/// import { MQ } from '../utils/style'; import { LogicalProps } from '../utils/logical-properties'; export interface OrderedListProps extends React.OlHTMLAttributes { children: React.ReactNode | Array; overrides?: { spaceInline?: MQ; content?: { stylePreset?: MQ; typographyPreset?: MQ; }; counter?: { stylePreset?: MQ; typographyPreset?: MQ; minWidth?: MQ; }; } & LogicalProps; } export interface OrderedListItemProps extends Omit { children: React.ReactNode; } //# sourceMappingURL=types.d.ts.map