import React, { ReactNode } from 'react';
import { ThumbnailType } from "./types";
export type Props = {
    children: ReactNode;
    heading?: string;
    description?: string;
    thumbnail?: ThumbnailType;
    hideDescOnMobile?: boolean;
};
declare const BannerLayout: ({ heading, description, thumbnail, hideDescOnMobile, children, }: Props) => React.JSX.Element;
export { BannerLayout };
