import { ButtonGroupProps } from '@mui/material'; import { ReactElement } from 'react'; export type AlignOption = 'left' | 'center' | 'right'; export interface AlignSelectorProps extends Omit { onChange: (align: AlignOption) => void; value?: AlignOption; } export declare function AlignSelector({ onChange, value, ...props }: AlignSelectorProps): ReactElement; //# sourceMappingURL=AlignSelector.d.ts.map