import { ColProps, GridProps } from './Grid.props'; /************************* * Column component *************************/ declare const Col: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; /************************* * Grid component *************************/ declare const GridBase: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; /************************* * Type: extend Grid with Col *************************/ type GridComponent = typeof GridBase & { Col: typeof Col; }; /************************* * Attach Col to Grid *************************/ declare const Grid: GridComponent; export default Grid;