import type { ControlRegistration, ControlSubject } from './control-interaction.js'; export interface ControlRegistrationDescriptor extends Omit { controlId: string | undefined; subject?: ControlSubject; } /** Register a reactive control descriptor with the nearest Form registry. */ export declare function useControlRegistration(getDescriptor: () => ControlRegistrationDescriptor | false): void; //# sourceMappingURL=use-control-registration.svelte.d.ts.map