import { MotionProps } from 'framer-motion';
type Extendable = MotionProps & React.ComponentPropsWithoutRef<"div">;
export interface ColumnProps extends Extendable {
    /** standard flex css properties for align-items, @default center */
    alignItems?: React.CSSProperties["alignItems"];
    /** standard flex css properties for justify-content, @default center */
    justifyContent?: React.CSSProperties["justifyContent"];
    /** standard flex css properties for flex-wrap property, @default wrap */
    wrap?: React.CSSProperties["flexWrap"];
    /** standard css gap property values, @default undefined */
    gap?: React.CSSProperties["gap"];
    /** should the column stretch to the height of the parent */
    fullHeight?: boolean;
    /** should the column stretch to the width of the parent */
    fullWidth?: boolean;
}
/** A simple helper component to layout child components in a column, justify/align properties as well as gap are supported */
export declare function Column(props: ColumnProps): import("@emotion/react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=index.d.ts.map