import { type ReactElement, type ReactNode } from "react"; export interface IEditableLabelWithBubbleProps { className: string; alignTo: string; maxRows: number; value: string; maxLength: number; placeholderMessage: string; warningLimit: number; onSubmit: (value: string) => void; onEditingStart?: () => void; onCancel?: () => void; children?: ReactNode; } export declare function EditableLabelWithBubble({ onEditingStart, maxLength, value, warningLimit, onCancel, alignTo, className, maxRows, placeholderMessage, children, onSubmit }: IEditableLabelWithBubbleProps): ReactElement; //# sourceMappingURL=EditableLabelWithBubble.d.ts.map