import * as React from "react"; import { type VariantProps } from "../../../../utils.js"; import type { filePickerVariants } from "../../../../FilePicker/index.js"; import type { FilePreviewDefaultProps } from "../types.js"; type FilePreviewProps = FilePreviewDefaultProps & { type: VariantProps["type"]; renderFilePreview?: (props: any) => React.ReactElement; }; declare const FilePreview: ({ type, renderFilePreview, ...props }: FilePreviewProps) => React.JSX.Element; export { FilePreview, type FilePreviewProps };