import { z } from 'zod'; export declare const noteFormSchema: z.ZodObject<{ note: z.ZodString; }, z.core.$strip>; export type NoteFormData = z.infer;