import type { AllowlistIdentifier } from '../resources/AllowlistIdentifier';
import type { PaginatedResourceResponse } from '../resources/Deserializer';
import { AbstractAPI } from './AbstractApi';
type AllowlistIdentifierCreateParams = {
    identifier: string;
    notify: boolean;
};
export declare class AllowlistIdentifierAPI extends AbstractAPI {
    getAllowlistIdentifierList(): Promise<PaginatedResourceResponse<AllowlistIdentifier[]>>;
    createAllowlistIdentifier(params: AllowlistIdentifierCreateParams): Promise<AllowlistIdentifier>;
    deleteAllowlistIdentifier(allowlistIdentifierId: string): Promise<AllowlistIdentifier>;
}
export {};
//# sourceMappingURL=AllowlistIdentifierApi.d.ts.map