/** Row components can be used to quickly create basic grid layouts or to control your other
 * component layouts and override when needed at the column level. Containers help in
 * defining the layout structure of your application.
 *
 * ## Container Size Reference
 *
 * ### Breakpoints
 *
 * | Size | Device Category | Min Width | Max Container Width |
 * | :--: | :-------------- | :-------: | :----------------: |
 * | `sm` | Portrait phones | **576px** | 540px |
 * | `md` | Tablets | **768px** | 720px |
 * | `lg` | Desktops | **992px** | 960px |
 * | `xl` | Large desktops | **1200px** | 1140px |
 * | `xxl` | Ultra-wide desktops | **1400px** | 1320px |
 *
 * > **Note:** Container max widths only apply when the viewport width exceeds the minimum breakpoint.
 * */
declare const _default: {
    title: string;
    tags: string[];
    parameters: {
        actions: {
            handles: {
                onClick: import("@vitest/spy").Mock<(...args: any[]) => any>;
            };
        };
    };
    argTypes: {
        size: {
            control: string;
            options: string[];
            description: string;
            table: {
                type: {
                    summary: string;
                };
                category: string;
                defaultValue: {
                    summary: string;
                };
            };
        };
        fluid: {
            control: string;
            description: string;
            table: {
                type: {
                    summary: string;
                };
                category: string;
                defaultValue: {
                    summary: string;
                };
            };
        };
    };
};
export default _default;
export declare const Row: any;
