import { ConfigurationService } from '../../config/configuration.service';
export declare class SshafService {
    private config;
    private axios;
    constructor(config: ConfigurationService);
    setOil(roleCode: string, postalCode: string, sellerPhone: string, sellerNationalCode: string, list: SetOil[]): Promise<any>;
}
export interface SetOil {
    sellDate: string;
    buyerNationalCode: string;
    buyerFullName: string;
    buyerMobile: string;
    count: number;
    perPrice: number;
    totalPrice: number;
    productCode: string;
    productInfo: string;
    buyerAddress: string;
    carPlateNumber: string;
}
