import React, { ReactNode } from 'react';
import { ScrollAreaProps } from '@mantine/core';
type LayoutProps = {
    heading: string;
    children: ReactNode;
    stickyActions?: ReactNode;
} & ScrollAreaProps;
export declare const Layout: ({ heading, children, stickyActions, ...scrollAreaProps }: LayoutProps) => React.JSX.Element;
export {};
