import React from "react"; import type { Workflow } from "../AppProvider/workflow"; export declare type LayoutVariant = "standard" | "wizard"; export declare type LayoutProps = { workflowsInPath: Array; variant?: LayoutVariant | null; title?: string; subtitle?: string; hideHeader?: boolean; usesContext?: boolean; }; declare const WorkflowLayout: ({ workflowsInPath, variant, title, subtitle, hideHeader, usesContext, children, }: React.PropsWithChildren) => JSX.Element; export default WorkflowLayout; //# sourceMappingURL=index.d.ts.map