import { type Signal } from '@angular/core';
import type { SafeAny } from '@ngify/core';
import type { AbstractFormGroupSchema, AbstractSchema } from '../schemas';
import type { Indexable } from '../types';
type FormComposeFn = () => SafeAny;
export declare function form(composeFn: FormComposeFn): Signal<AbstractFormGroupSchema>;
export declare function form(schemas: Indexable<AbstractSchema>[]): AbstractFormGroupSchema;
export {};
