/** * Returns the valid variable name for the given string and the given suffixOrPrefix. * @example getVariableName("user", "data") === "usersData" * @example getVariableName("1234", "data") === "data1234" * @example getVariableName("users-account", "selectProps") === "usersAccountSelectProps" */ export declare const getVariableName: (fieldKey: string, suffixOrPrefix?: string) => string; //# sourceMappingURL=index.d.ts.map