import React from 'react'; import { LogicalProps } from '../utils/logical-properties'; import { MQ, MQPartial } from '../utils/style'; export type TitleBarOverrides = { stylePreset?: MQ; heading?: { stylePreset?: MQ; typographyPreset?: MQ; }; }; export type ContainerProps = { children: React.ReactNode; overrides?: TitleBarOverrides; }; export interface TitleBarProps extends React.HTMLAttributes { children: React.ReactNode; actionItem?: React.ComponentType; hideActionItemOn?: MQPartial; headingAs?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'span'; overrides?: TitleBarOverrides & LogicalProps; } //# sourceMappingURL=types.d.ts.map