import React from 'react'; import { TypeProps as ColumnStyleProps } from './ColumnStyle'; import { Theme } from '../../types'; declare type Props = { children: React.ReactNode; className?: string; debug?: boolean; debugColor?: string; id?: string; order?: Theme.TypeSpan; push?: Theme.TypeSpan; span: Theme.TypeSpan; wrap?: boolean; } & ColumnStyleProps; declare const Column: React.FC; export default Column; //# sourceMappingURL=Column.d.ts.map