import React from "react"; export interface WorkflowLayoutContextProps { title?: string; subtitle?: string; headerContent?: React.ReactNode; setTitle: (title: string) => void; setSubtitle: (subtitle: string) => void; setHeaderContent: (headerContent: React.ReactNode) => void; } declare const WorkflowLayoutContextProvider: ({ children }: { children: React.ReactNode; }) => JSX.Element; declare const useWorkflowLayoutContext: () => WorkflowLayoutContextProps; export { WorkflowLayoutContextProvider, useWorkflowLayoutContext }; //# sourceMappingURL=context.d.ts.map