import React from 'react';
import { ContainerProps } from '@mantine/core';
export type OnboardingUIProps = {
    heading: string;
    description: React.ReactNode;
    imgSrc?: string;
    hiddenLogo?: boolean;
} & ContainerProps;
export declare const OnboardingUI: ({ heading, description, children, className, imgSrc, hiddenLogo, ...rest }: OnboardingUIProps) => React.JSX.Element;
