import * as React from 'react'; import { BaseProps, SizingProp, VerticalsAlignProps, CrossAxisAlignProp } from '../common'; export interface Stretch extends BaseProps, VerticalsAlignProps, CrossAxisAlignProp { sizing?: number; } /** * For providing a *as much as available* amount of space for an item */ export declare const Stretch: React.ForwardRefExoticComponent & React.RefAttributes>; export interface ContentProps extends BaseProps, VerticalsAlignProps, CrossAxisAlignProp { wrapInSpan?: boolean; } /** * For providing a *as much as needed* amount of space for an item */ export declare const Content: React.ForwardRefExoticComponent & React.RefAttributes>; export interface BoxProps extends BaseProps, VerticalsAlignProps, SizingProp, CrossAxisAlignProp { } /** * A general purpose single item container */ export declare const Box: React.ForwardRefExoticComponent & React.RefAttributes>; //# sourceMappingURL=containers.d.ts.map