@spaced-out/ui-design-system
Version:
Sense UI components library
15 lines • 522 B
TypeScript
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