UNPKG

@spaced-out/ui-design-system

Version:
15 lines 522 B
import type { Flow } from 'flow-to-typescript-codemod'; import type { FileObject } from '../FileUpload'; type ClassNames = Readonly<{ wrapper?: string; }>; export type FileBlockProps = { classNames?: ClassNames; fileObject: FileObject; onFileRefreshClick?: (file: FileObject) => unknown; handleFileClear?: (id: string) => unknown; showRemoveFile?: boolean; }; export declare const FileBlock: Flow.AbstractComponent<FileBlockProps, HTMLDivElement>; export {}; //# sourceMappingURL=FileBlock.d.ts.map