import * as z from "zod"; export declare const StandardPageLayoutPropsSchema: z.ZodObject<{ title: z.ZodString; onBack: z.ZodOptional, z.ZodVoid>>; onSave: z.ZodOptional, z.ZodVoid>>; canSave: z.ZodOptional; isLoading: z.ZodOptional; children: z.ZodOptional; }, "strip", z.ZodTypeAny, { title: string; children?: any; onBack?: (() => void) | undefined; isLoading?: boolean | undefined; onSave?: (() => void) | undefined; canSave?: boolean | undefined; }, { title: string; children?: any; onBack?: (() => void) | undefined; isLoading?: boolean | undefined; onSave?: (() => void) | undefined; canSave?: boolean | undefined; }>; export type StandardPageLayoutProps = z.infer;