import { Icon } from '../../global/shared-types/icon.types';
/**
 * @public
 */
export interface DialogHeading {
  title: string;
  subtitle?: string;
  supportingText?: string;
  icon: string | Icon;
}
/**
 * @public
 */
export interface ClosingActions {
  escapeKey: boolean;
  scrimClick: boolean;
}
//# sourceMappingURL=dialog.types.d.ts.map