import { FC, ReactNode } from 'react'; type AlignValue = 'left' | 'center' | 'right'; type AlignmentMenuProps = { currentAlignment: AlignValue; onAlign: (value: AlignValue) => void; className?: string; targetLabel?: ReactNode; }; export declare const AlignmentMenu: FC; export type { AlignValue }; //# sourceMappingURL=index.d.ts.map