import type { CSSProperties, ReactNode } from 'react'; export type Align = 'start' | 'middle' | 'end' | 'none'; export interface AlignGroupProps { x?: number; y?: number; style?: CSSProperties; verticalAlign?: Align; horizontalAlign?: Align; children: ReactNode | ReactNode[]; } export declare function AlignGroup(props: AlignGroupProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=AlignGroup.d.ts.map