import { ReactNode } from 'react'; declare type Status = 'success' | 'cancelled' | 'warning'; export interface Props { children?: ReactNode; status: Status; animated?: boolean; } export declare function CalloutHeader({ children, status, animated }: Props): JSX.Element; export {};