import { PropsWithChildren } from 'react'; import File from '../entities/file'; export declare const FileContext: React.Context; interface Props { file?: File; } export default function FileProvider({ file, children }: PropsWithChildren): import("react/jsx-runtime").JSX.Element | null; export declare function useFile(): File; export {};