import { PropsWithChildren, ReactNode } from 'react'; export interface SuccessFormProps extends PropsWithChildren { id?: string; headline?: string; bodyCopy?: string | ReactNode; isSubmitted: boolean; variant?: string; } export declare function SuccesFormWrapper({ children, isSubmitted, variant: fullVariant, bodyCopy, headline, id, }: SuccessFormProps): import("react").JSX.Element;