import { InputProps, FileState, FileSystemType } from '../../../../../ui/index.js';
export declare function useFileElements({ fileProps, fileState }: {
    fileProps: InputProps;
    fileState: FileState;
}): {
    InputFile: ({ visible, onChangeInputFile, }: {
        visible?: boolean;
        onChangeInputFile?: (fileSystemType: FileSystemType) => void;
    }) => import("react/jsx-runtime").JSX.Element;
    UploadCamera: () => import("react/jsx-runtime").JSX.Element;
    LabelFileArea: ({ children }: {
        children: any;
    }) => import("react/jsx-runtime").JSX.Element;
};
