import { FC } from 'react'; import { AppName } from '@monorail/helpers/exports'; import { IconType } from '@monorail/visualComponents/icon/IconType'; declare type Props = { title: string; iconLeft?: IconType | AppName; iconRight?: IconType | AppName; }; export declare const SectionHeader: FC; export {};