import type { IDisableableProps } from '../../../../Behaviors/Disableable'; import type { IFilePickerElementProps } from '../../../Inputs/FileUpload/IFilePickerElementProps'; import type { IThemeableProps } from '../../../../Behaviors/Themeable'; /** * Represents the `IAttachmentChatToolElementProps` interface. * * @public */ export interface IAttachmentChatToolElementProps extends Omit, IDisableableProps, IThemeableProps { maxFiles: number; maxFileSize: number; } //# sourceMappingURL=IAttachmentChatToolElementProps.d.ts.map