import '../index.scss'; import { LuiIconName } from '@linzjs/lui/dist/assets/svg-content'; import { PropsWithChildren, ReactElement } from 'react'; export interface LuiModalAsyncHeaderProps { icon?: LuiIconName | ReactElement | null; title: string; closeButton?: true; helpLink?: string; onHelpClick?: () => void; helpButtonLevel?: 'text' | 'plain-text' | 'primary' | 'secondary' | 'tertiary' | 'success' | 'error'; } /** * Generic modal header. */ export declare const LuiModalAsyncHeader: ({ icon, title, closeButton, helpLink, onHelpClick, helpButtonLevel, }: PropsWithChildren) => import("react").JSX.Element;