export interface Record {
    [key: string]: any;
}
export declare type DataSource = Record[];
/**
 * value is percentage of the loading process, it's an estimate value.
 */
export declare type ProgressCallback = (value: number) => void;
