declare const DEFAULT_OPTIONS: {
    maxReformats: number;
    lists: Record<string, string[]>;
};
declare function showAvailableLists(): string[];
declare function generate(format?: string, options?: Partial<typeof DEFAULT_OPTIONS>): string;

export { generate as default, generate, showAvailableLists };
