import * as React from 'react'; import { IHasCX, IHasRawProps } from '@epam/uui-core'; export interface DropSpotProps extends IHasRawProps>, IHasCX { /** * Defines the infoText. InfoText is additional information that can be rendered at the bottom of the AttachmentArea. */ infoText?: React.ReactNode; /** * Called when files was added to the DropSpot. */ onUploadFiles(files: File[]): any; /** * Hint for expected file type in file upload controls. See {@link https://developer.mozilla.org/en-US/docs/web/html/element/input#accept} for details */ accept?: string; /** * Whether to allow single or multiple values. See {@link https://developer.mozilla.org/en-US/docs/web/html/element/input#multiple} for details */ single?: boolean; } export declare function DropSpot(props: DropSpotProps): React.JSX.Element; //# sourceMappingURL=DropSpot.d.ts.map