type OptionItem = {
    label: string;
    value: string;
};
export type ConfigProps = {
    label: string;
    key: string;
    callback: (param?: any) => null;
    openDialog?: boolean;
    fileStyleOptions?: OptionItem[];
    showFileStyleSelect?: boolean;
    fileStyleKey: string;
    fileStyleTitle?: string;
};
export {};
