import type { CSSProperties } from 'react';
import type { ChatFile } from '../../types';
export interface FilePreviewProps {
    file: ChatFile;
    style?: CSSProperties;
}
export declare function FilePreview({ file, style }: FilePreviewProps): import("react/jsx-runtime").JSX.Element;
