import { HttpClient, NonNullablePaths, MaybeContext, BuildRESTFunction } from '@wix/sdk-types'; import { ListAccountCertificationsResponse, AccountCertificationsQueryBuilder, AccountCertificationQuery, typedQueryAccountCertifications } from './index.typings.mjs'; export { AccountCertification, AccountCertificationQuerySpec, AccountCertificationsQueryResult, AccountInfo, ActionEvent, Certification, CertificationType, CertificationTypeWithLiterals, CertifyAccountRequest, CertifyAccountResponse, CommonQueryWithEntityContext, CursorPaging, CursorPagingMetadata, CursorQuery, CursorQueryPagingMethodOneOf, Cursors, DecertifyAccountRequest, DecertifyAccountResponse, DomainEvent, DomainEventBodyOneOf, Empty, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, IdentificationData, IdentificationDataIdOneOf, ListAccountCertificationsRequest, MessageEnvelope, QueryAccountCertificationsRequest, QueryAccountCertificationsResponse, RestoreInfo, SortOrder, SortOrderWithLiterals, Sorting, TeamMemberRemovedEvent, WebhookIdentityType, WebhookIdentityTypeWithLiterals, utils } from './index.typings.mjs'; declare function listAccountCertifications$1(httpClient: HttpClient): ListAccountCertificationsSignature; interface ListAccountCertificationsSignature { /** * Retrieves an account's certifications for public display, given the account ID. * * This is a public, visitor-safe projection that returns only each certification's type and * creation date. To retrieve the full account certification records, including the underlying * `userCertificationIds`, call [Query Account Certifications](https://dev.wix.com/docs/api-reference/account-level/studio-workspace/certifications/account-certification-v1/query-account-certifications) instead. * @param - ID of the account to get certifications for. */ (accountId: string): Promise>; } declare function customQueryAccountCertifications(httpClient: HttpClient): { (): AccountCertificationsQueryBuilder; (query: AccountCertificationQuery): ReturnType; }; declare const listAccountCertifications: MaybeContext & typeof listAccountCertifications$1>; declare const queryAccountCertifications: MaybeContext & typeof customQueryAccountCertifications>; export { AccountCertificationQuery, AccountCertificationsQueryBuilder, ListAccountCertificationsResponse, listAccountCertifications, queryAccountCertifications };