index.d.ts 338 B

12345678910
  1. import Col from './col';
  2. import Row from './row';
  3. declare function useBreakpoint(): Partial<Record<import("..").Breakpoint, boolean>>;
  4. export type { ColProps, ColSize } from './col';
  5. export type { RowProps } from './row';
  6. export { Col, Row };
  7. declare const _default: {
  8. useBreakpoint: typeof useBreakpoint;
  9. };
  10. export default _default;