import React from "react";
declare type LayoutProps = {
    children: React.ReactNode;
    show: "yes" | "no";
    height: string;
};
export declare const Layout: ({ children, show, height }: LayoutProps) => JSX.Element;
export {};
//# sourceMappingURL=layout.d.ts.map