/// export declare type ActionType = 'rotate-left' | 'rotate-right' | 'zoom-in' | 'zoom-out' | 'alignment' | 'font' | 'text-color' | 'zoom-out' | 'message-ideas'; interface EditingProps { /** * @default 0. */ animationDelay?: number; onChange: (action: ActionType) => void; } export declare const EditImage: ({ onChange, animationDelay }: EditingProps) => JSX.Element; export declare const EditText: ({ onChange, animationDelay }: EditingProps) => JSX.Element; export {};