/// import type { Alignment } from '../../../core/schema-types/types'; import type { AlignmentControlsOption } from '../../../core/util'; interface Props { alignmentType: 'Horizontal' | 'Vertical'; options: AlignmentControlsOption[]; data: Alignment; onChange: (type: Alignment['y'] | Alignment['x'], dirction: 'Horizontal' | 'Vertical') => void; } export declare const AlignmentControl: ({ options, data, alignmentType, onChange }: Props) => JSX.Element; export {};