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