import { ToAttr } from '@zurich/dev-utils/typescript'; type MobileColumn = 1 | 2 | 3 | 4 | 5 | 6; type Column = MobileColumn | 7 | 8 | 9 | 10 | 11 | 12; export type ZGridProps = { /** ZDS Grid system * */ 'z-grid'?: 'main' | 'center' | 'row' | 'column'; /** ... */ 'column'?: Column | ToAttr | ToAttr<'m', MobileColumn> | ToAttr<'m', MobileColumn, MobileColumn>; }; export {};