import { BaseComponent, CustomTokens } from './_shared'; import { ZInput_Props } from './_Input.props'; export type ZForm_Custom = 'margin' | 'gap'; export type ZForm_Props = BaseComponent & Partial<{ readonly config: ZInput_Props['config']; /** */ readonly custom: CustomTokens; }>; export declare const zFormSlots: never[]; export type ZForm_Slots = (typeof zFormSlots)[number]; export type ZForm_Events = Partial<{ readonly submit: unknown; }>;