import { type CSSProperties, type HTMLAttributes } from 'react'; import { type CssLength } from '../../../utils/css'; type StickerFilterTextProps = Omit, 'children' | 'defaultValue' | 'onChange'> & { children?: string; defaultValue?: string; editable?: boolean; editableLabel?: string; textClassName?: string; onValueChange?: (value: string) => void; color?: string; fontFamily?: string; fontSize?: CssLength; fontWeight?: CSSProperties['fontWeight']; padding?: CssLength; lightZ?: number; }; declare const StickerFilterText: ({ children, defaultValue, editable, editableLabel, textClassName, onValueChange, className, style, color, fontFamily, fontSize, fontWeight, padding, lightZ, onInput, onKeyDown, onPointerMove, ...rest }: StickerFilterTextProps) => import("react/jsx-runtime").JSX.Element; export { StickerFilterText }; export type { StickerFilterTextProps };