import { ReactNode, FC, CSSProperties, PropsWithChildren } from 'react'; import './style'; export interface ICardPageProps { title: string; pageTitleIcon?: ReactNode; pageStatusIcon?: ReactNode; extraButtons?: ReactNode[]; className?: string; style?: CSSProperties; } declare const IglooCardPage: FC>; export default IglooCardPage;