import type { ReactElement, ReactNode } from 'react';
import type { FormPageLayoutStyleProps } from '../Types';
type FormPageLayoutProps = {
    logo?: ReactNode;
    title?: ReactNode;
    subtitle?: ReactNode;
    description?: ReactNode;
    styleProps?: FormPageLayoutStyleProps;
    children: ReactNode;
    tag?: string;
};
declare const FormPageLayoutOnboard: ({ title, subtitle, description, children, }: FormPageLayoutProps) => ReactElement;
export default FormPageLayoutOnboard;
//# sourceMappingURL=FormPageLayout.d.ts.map