/**
 * @file index.tsx
 *
 * @fileoverview Aligns content to the center.
 */
import React from 'react';
export interface AlignedCenterProps {
    /**
     * The content should flow veritcally or horizontally.
     *
     * @default "column"
     */
    flow?: 'row' | 'column';
    /**
     * The content to be displayed inside the chip element.
     *
     * @default "null"
     */
    children: React.ReactNode | string;
}
export declare const AlignedCenter: ({ flow, children }: AlignedCenterProps) => JSX.Element;
export default AlignedCenter;
