import { SvelteComponentTyped } from "svelte"; import "./index.css"; declare const __propDef: { props: { schema: any; formData: any; onSubmit: any; onChange: any; section?: boolean | undefined; layout: any; config?: {} | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type SchemaFormProps = typeof __propDef.props; export declare type SchemaFormEvents = typeof __propDef.events; export declare type SchemaFormSlots = typeof __propDef.slots; export default class SchemaForm extends SvelteComponentTyped { } export {};