import zod from 'zod';
export declare const options: zod.ZodObject<{
    config: zod.ZodOptional<zod.ZodString>;
    openReport: zod.ZodOptional<zod.ZodBoolean>;
}, "strip", zod.ZodTypeAny, {
    config?: string | undefined;
    openReport?: boolean | undefined;
}, {
    config?: string | undefined;
    openReport?: boolean | undefined;
}>;
export declare const alias = "w";
type Props = {
    options: zod.infer<typeof options>;
};
declare const Walk: ({ options }: Props) => import("react/jsx-runtime").JSX.Element;
export default Walk;
