export interface TwoElementWithTitleProps {
    children: [JSX.Element, JSX.Element];
    title?: string;
}
export declare function TwoElementWithTitleLayout({ title, children }: TwoElementWithTitleProps): import("react/jsx-runtime").JSX.Element;
