import { TextareaAutosizeProps } from "react-textarea-autosize"; export type PanelStandardInputOption = { label: string; leadingImage?: string; onClick?: () => void; }; export type PanelStandardInputProps = { value: string; onChange: (value: string) => void; placeholder?: string; options?: PanelStandardInputOption[]; leadingSlot?: React.ReactNode; onSubmit?: () => void; submitDisabled?: boolean; fieldDisabled?: boolean; className?: string; } & Omit & React.RefAttributes; export declare function PanelStandardInput({ value, onChange, placeholder, options, leadingSlot, onSubmit, submitDisabled, fieldDisabled, className, ref, ...textareaProps }: PanelStandardInputProps): import("react").JSX.Element; export declare namespace PanelStandardInput { var displayName: string; } //# sourceMappingURL=PanelStandardInput.d.ts.map