export type TWebPushIndexCollection = 'WebPushBindingDoc' | 'WebPushAdmissionDoc' | 'WebPushSpoolDoc'; export interface IWebPushIndexSpecification { collection: TWebPushIndexCollection; name: string; key: Record; unique?: true; expireAfterSeconds?: number; partialFilterExpression?: Record; } export declare const webPushIndexSpecifications: IWebPushIndexSpecification[]; export declare function getWebPushIndexSpecifications(collectionArg: TWebPushIndexCollection): IWebPushIndexSpecification[];