import { HttpClient, NonNullablePaths, MaybeContext, BuildRESTFunction } from '@wix/sdk-types'; import { ListTippableStaffOptions, ListTippableStaffResponse } from './index.typings.js'; export { IdentificationData, IdentificationDataIdOneOf, IdentityType, IdentityTypeWithLiterals, ListTippableStaffRequest, Staff } from './index.typings.js'; declare function listTippableStaff$1(httpClient: HttpClient): ListTippableStaffSignature; interface ListTippableStaffSignature { /** * Retrieves a list of up to 100 staff who are eligible to receive tips, given * the provided filtering. * @param - Options to use when listing tippable staff. */ (options?: ListTippableStaffOptions): Promise>; } declare const listTippableStaff: MaybeContext & typeof listTippableStaff$1>; export { ListTippableStaffOptions, ListTippableStaffResponse, listTippableStaff };