import type { WithSecondaryButton, WithPrimaryButton, WithoutButton } from './messageview'; /** * MessageView * @typeof WithSecondaryButton | WithPrimaryButton | WithoutButton * * @example * MessageView example WithSecondaryButton * ``` * console.warn('Clicked secondary!')} * handleSecondaryBtn={() => console.warn('Secondary clicked!')} * /> * ``` */ export declare const MessageView: ({ title, subTitle, headerComponent, imgUri, svgIcon, imgHeight, innerComponent, labelPrimaryBtn, handlePrimaryBtn, labelSecondaryBtn, handleSecondaryBtn, withoutButton, }: WithPrimaryButton | WithSecondaryButton | WithoutButton) => JSX.Element;