import type { GridCssVariables, GridFactory, GridProps, GridStylesNames } from './Grid';
import type { GridContextValue } from './Grid.context';
import type { GridColProps } from './GridCol/GridCol';
export { Grid } from './Grid';
export { GridCol } from './GridCol/GridCol';
export { useGridContext } from './Grid.context';
export type { GridCssVariables, GridFactory, GridProps, GridStylesNames, GridColProps, GridContextValue, };
export declare namespace Grid {
    type Props = GridProps;
    type Factory = GridFactory;
    type StylesNames = GridStylesNames;
    type CssVariables = GridCssVariables;
    type ColProps = GridColProps;
    type ContextValue = GridContextValue;
    namespace Col {
        type Props = GridColProps;
    }
}
