import type { BoxProps } from "@twilio-paste/box"; import type { HTMLPasteProps } from "@twilio-paste/types"; import * as React from "react"; export interface FileUploaderProps extends Omit, "onChange"> { children?: React.ReactNode; /** * Overrides the default element name to apply unique styles with the Customization Provider * * @default 'FILE_UPLOADER' * @type {BoxProps['element']} * @memberof FileUploaderProps */ element?: BoxProps["element"]; /** * Disables the FileUploader * * @type {boolean} * @memberof FileUploaderProps */ disabled?: boolean; /** * The id of the FileUploader. Used to create ids for the elements within the FileUploader. * * @type {string} * @memberof FileUploaderProps */ id?: string; /** * The name for the input within the FileUploader * * @type {string} * @memberof FileUploaderProps */ name: string; /** * If the FileUploader is required. * * @type {boolean} * @memberof FileUploaderProps */ required?: boolean; } export declare const FileUploader: React.ForwardRefExoticComponent>; //# sourceMappingURL=FileUploader.d.ts.map