import { ReactNode } from 'react'; export type ManualTestParams = { title: string; tool: string; steps: string[]; }; type ManualTestLayoutProps = ManualTestParams & { children: ReactNode; }; /** * Layout helper for manual accessibility test stories. * Renders the test title, tool, and step-by-step instructions * visibly above the component under test. */ export declare function ManualTestLayout({ title, tool, steps, children, }: ManualTestLayoutProps): import("react/jsx-runtime").JSX.Element; export {};