import type { KnownConfig } from "./types"; export declare const getErrorString: (errorCode: string | undefined) => string; /** * An alternative to Object.fromEntries that allows duplicate keys and converts the values corresponding to them in an array * * NOTE: This is a duplicate of the function in @calcom/lib/hooks/useRouterQuery.ts. It has to be here because embed is published to npm and shouldn't refer to any private package */ export declare function fromEntriesWithDuplicateKeys(entries: IterableIterator<[string, string]> | null): Record; export declare function getConfigProp(config: KnownConfig, prop: TProp): NonNullable | null; export declare function getQueryParamProvidedByConfig(queryParam: TProp): NonNullable | null; export declare function generateDataAttributes(props: Record): string; //# sourceMappingURL=utils.d.ts.map