import type { IndexOptions } from "../../types/index-options";
interface GetIndexNameParams {
    name?: string;
    propertyName: string;
    nameOrOptions?: IndexOptions | string;
}
export declare const getIndexName: ({ name, nameOrOptions, propertyName, }: GetIndexNameParams) => string;
export {};
