import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; /** * Represents the `IChatInputElementProps` interface. * * @public */ export interface IChatInputElementProps extends IVariantableProps, IAppearanceableProps, IDisableableProps { value: { message: string; files: Array; }; placeholder: string; } //# sourceMappingURL=IChatInputElementProps.d.ts.map