/// import { NewsKitIcon } from '../icons'; import { LogicalProps } from '../utils/logical-properties'; import { MQ } from '../utils/style'; export interface UnorderedListProps extends React.HTMLAttributes { children?: React.ReactNode | Array; listItemMarker?: NewsKitIcon | null; markerAlign?: 'start' | 'center' | 'end'; overrides?: { spaceStack?: MQ; content?: { stylePreset?: MQ; typographyPreset?: MQ; }; marker?: { stylePreset?: MQ; spaceInline?: MQ; size?: string; }; } & LogicalProps; } //# sourceMappingURL=types.d.ts.map