type $$ComponentProps = { onsubmit?: (data: Record) => void; method?: 'GET' | 'POST'; action?: string; textValue?: string; numberValue?: number | null; showAge?: boolean; webmcp?: boolean; textRequired?: boolean; ageRequired?: boolean; ageMin?: number; ageMax?: number; }; declare const FormWithFields: import("svelte").Component<$$ComponentProps, {}, "">; type FormWithFields = ReturnType; export default FormWithFields; //# sourceMappingURL=form-with-fields.fixture.svelte.d.ts.map