UNPKG

@moderntribe/wme-ui

Version:

Components and hooks to build the best UX/UI admin wizards

12 lines 460 B
import type React from 'react'; import { InputBaseComponentProps } from '@mui/material'; import type { WmeButtonProps } from '../button/button'; export interface FileUploadSelectProps { buttonText?: string; buttonProps?: WmeButtonProps; helperText?: string; inputProps?: InputBaseComponentProps; } declare const FileUploadSelect: React.FC<FileUploadSelectProps>; export default FileUploadSelect; //# sourceMappingURL=file-upload-select.d.ts.map