import { SelectOption } from 'cosmoui';
export interface Customer {
    accountNumber: string;
    refId: string;
    name: string;
    phone: string;
}
export interface CustomerOption extends Customer, SelectOption {
}
export declare type CustomerOptions = CustomerOption[];
