/// <reference types="react" />
import { BaseUIConfig, BaseUploaderProps, ClassName, FileHistoryProps } from '../types';
export type StoreContextType = Omit<FileHistoryProps, 'isOverwriteDBConfig' | 'classNames'> & {
    tableProps: FileHistoryProps['tableProps'] & Required<BaseUIConfig>;
    uploaderProps: FileHistoryProps['uploaderProps'] & Required<BaseUploaderProps>;
    classNames: Required<ClassName>;
    shouldReload: boolean;
    setShouldReload: (value: boolean) => void;
    translate: (key: string) => string;
};
export declare const storeContextDefaultValue: StoreContextType;
export declare const StoreContext: import("react").Context<StoreContextType>;
