import { FC } from 'react' import { SvgIconProps } from '../../icons' export type AppBarProps = { title?: string titleComponent?: React.ReactNode onBack?: () => void closeLabel?: string closeDisabled?: boolean onClose?: () => void BackIcon?: FC CloseIcon?: FC CloseIconProps?: SvgIconProps closeComponent?: React.ReactNode }