import { type FormIdBuilder } from "../form/main.js"; export interface IdOptions { idPrefix?: string; separator?: string; } export declare const DEFAULT_SEPARATOR = "_"; export declare function createFormIdBuilder({ idPrefix, separator, }?: IdOptions): FormIdBuilder;