export declare type CallOutOrientation = 'horizontal' | 'vertical'; export interface CallOutProps { title: string; text: string; buttonText: string; onButtonClick: () => void; className?: string; orientation: CallOutOrientation; } /** @todo Investigate UI kit adoption */ export declare const CallOut: ({ title, text, buttonText, onButtonClick, className, orientation, }: CallOutProps) => JSX.Element; export default CallOutProps;