import { FC, ReactNode } from 'react';
export interface WorkflowLayoutProps {
    children: ReactNode;
    isFullScreen?: boolean;
    className?: string;
    height?: string;
}
/**
 * WorkflowLayout component for consistent workflow UI layout
 * Handles fullscreen mode and responsive behavior
 */
export declare const WorkflowLayout: FC<WorkflowLayoutProps>;
//# sourceMappingURL=WorkflowLayout.d.ts.map