import { ChangeEvent } from "react"; import { CSSProps } from "../CSSProps"; export interface AttachFileButtonProps { onChange: (e: ChangeEvent) => any; onFocus?: () => void; onBlur?: () => void; disabled: boolean; themeOverride?: CSSProps; className?: string; ariaLabel?: string; icon?: string; sizeMultiplier?: number; multipleFiles: boolean; conversationSid?: string; legacy?: boolean; showTooltip?: boolean; tooltipMessage?: string; }