welcome-ui
Version:
Customizable design system with react • styled-components • styled-system and ariakit.
10 lines (9 loc) • 345 B
TypeScript
import { default as React } from 'react';
import { ForceFileType } from '../Files';
import { FileDropChildren } from './index';
export interface MessageProps {
file: FileDropChildren['file'];
fileName?: string;
forceFileType?: ForceFileType;
}
export declare const FilePreview: React.FC<FileDropChildren['wordings'] & MessageProps>;