import type { OptionalArgument } from '../helpers'; import type { AppID, CursorPaginationEnabled, OptionalTeamAssignable, SortDir, TargetTeam, TokenOverridable, TraditionalPagingEnabled } from './common'; export type TeamAccessLogsArguments = OptionalArgument; export type TeamBillableInfoArguments = OptionalArgument; export type TeamBillingInfoArguments = OptionalArgument; export type TeamExternalTeamsDisconnectArguments = TokenOverridable & Required; export type TeamExternalTeamsListArguments = OptionalArgument; export type TeamInfoArguments = OptionalArgument; export type TeamIntegrationLogsArguments = OptionalArgument & TokenOverridable & OptionalTeamAssignable & TraditionalPagingEnabled & { /** @description Filter logs with this change type. Defaults to all logs. */ change_type?: 'added' | 'removed' | 'enabled' | 'disabled' | 'updated'; /** @description Filter logs to this service. Defaults to all logs. */ service_id?: string; /** @description Filter logs generated by this user’s actions. Defaults to all logs. */ user?: string; }>; export type TeamProfileGetArguments = OptionalArgument; export type TeamPreferencesListArguments = OptionalArgument; //# sourceMappingURL=team.d.ts.map