import { ComponentType } from 'react'; import { MQ } from '../utils/style/types'; import { Theme } from '../theme'; import { LogicalProps } from '../utils/logical-properties'; export interface SvgProps extends React.SVGAttributes { title?: string; } export interface NewsKitIconProps extends SvgProps { overrides?: { stylePreset?: MQ; size?: MQ; } & LogicalProps; } export type NewsKitIcon = ComponentType; //# sourceMappingURL=types.d.ts.map