index.d.ts 311 B

12345678910
  1. import Row from './Row';
  2. import Col from './Col';
  3. import useBreakpoint from '../_util/hooks/useBreakpoint';
  4. export type { RowProps } from './Row';
  5. export type { ColProps, ColSize } from './Col';
  6. export { Row, Col };
  7. declare const _default: {
  8. useBreakpoint: typeof useBreakpoint;
  9. };
  10. export default _default;