import { IFile } from "./interface"; export declare const configSrore: { userToken: string; userGroupHash: string; podspaceUrl: string; clasorUrl: string; resourceId?: number; onRefresh?: () => Promise; onError?: (err: any) => void; onSelectItem?: (fileItem: IFile) => void; }; export declare const setValue: (name: string, value: string | number | (() => Promise) | ((fileItem: IFile) => void) | ((err: any) => void)) => void;