export declare const VendorsCsvHeaders: string[];
export declare const VendorsCsvStyler: {
    Name: {
        type: string;
        required_product: boolean;
    };
    Description: {
        type: string;
    };
    Enable: {
        type: string;
        default: boolean;
    };
    Access: {
        type: string;
        default: boolean;
    };
    Email: {
        type: string;
    };
    Address: {
        type: string;
    };
    Web: {
        type: string;
    };
    Tel: {
        type: string;
    };
    Bank: {
        type: string;
    };
    "Bank Account Name": {
        type: string;
    };
    "Bank Account Number": {
        type: string;
    };
    "Bank Routing Number": {
        type: string;
    };
    IBAN: {
        type: string;
    };
    Swift: {
        type: string;
    };
    "Bank Address": {
        type: string;
    };
    Icon: {
        type: string;
    };
    Country: {
        type: string;
    };
    State: {
        type: string;
    };
    Business: {
        type: string;
    };
    "Business Name": {
        type: string;
    };
    "Tax ID": {
        type: string;
    };
};
export declare class VendorsCsvFormat {
    static CheckValidFile(headers: string[]): boolean;
}
