import { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, } from "@smithy/types"; import { AbortDocumentVersionUploadCommandInput, AbortDocumentVersionUploadCommandOutput, } from "./commands/AbortDocumentVersionUploadCommand"; import { ActivateUserCommandInput, ActivateUserCommandOutput, } from "./commands/ActivateUserCommand"; import { AddResourcePermissionsCommandInput, AddResourcePermissionsCommandOutput, } from "./commands/AddResourcePermissionsCommand"; import { CreateCommentCommandInput, CreateCommentCommandOutput, } from "./commands/CreateCommentCommand"; import { CreateCustomMetadataCommandInput, CreateCustomMetadataCommandOutput, } from "./commands/CreateCustomMetadataCommand"; import { CreateFolderCommandInput, CreateFolderCommandOutput, } from "./commands/CreateFolderCommand"; import { CreateLabelsCommandInput, CreateLabelsCommandOutput, } from "./commands/CreateLabelsCommand"; import { CreateNotificationSubscriptionCommandInput, CreateNotificationSubscriptionCommandOutput, } from "./commands/CreateNotificationSubscriptionCommand"; import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand"; import { DeactivateUserCommandInput, DeactivateUserCommandOutput, } from "./commands/DeactivateUserCommand"; import { DeleteCommentCommandInput, DeleteCommentCommandOutput, } from "./commands/DeleteCommentCommand"; import { DeleteCustomMetadataCommandInput, DeleteCustomMetadataCommandOutput, } from "./commands/DeleteCustomMetadataCommand"; import { DeleteDocumentCommandInput, DeleteDocumentCommandOutput, } from "./commands/DeleteDocumentCommand"; import { DeleteDocumentVersionCommandInput, DeleteDocumentVersionCommandOutput, } from "./commands/DeleteDocumentVersionCommand"; import { DeleteFolderCommandInput, DeleteFolderCommandOutput, } from "./commands/DeleteFolderCommand"; import { DeleteFolderContentsCommandInput, DeleteFolderContentsCommandOutput, } from "./commands/DeleteFolderContentsCommand"; import { DeleteLabelsCommandInput, DeleteLabelsCommandOutput, } from "./commands/DeleteLabelsCommand"; import { DeleteNotificationSubscriptionCommandInput, DeleteNotificationSubscriptionCommandOutput, } from "./commands/DeleteNotificationSubscriptionCommand"; import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand"; import { DescribeActivitiesCommandInput, DescribeActivitiesCommandOutput, } from "./commands/DescribeActivitiesCommand"; import { DescribeCommentsCommandInput, DescribeCommentsCommandOutput, } from "./commands/DescribeCommentsCommand"; import { DescribeDocumentVersionsCommandInput, DescribeDocumentVersionsCommandOutput, } from "./commands/DescribeDocumentVersionsCommand"; import { DescribeFolderContentsCommandInput, DescribeFolderContentsCommandOutput, } from "./commands/DescribeFolderContentsCommand"; import { DescribeGroupsCommandInput, DescribeGroupsCommandOutput, } from "./commands/DescribeGroupsCommand"; import { DescribeNotificationSubscriptionsCommandInput, DescribeNotificationSubscriptionsCommandOutput, } from "./commands/DescribeNotificationSubscriptionsCommand"; import { DescribeResourcePermissionsCommandInput, DescribeResourcePermissionsCommandOutput, } from "./commands/DescribeResourcePermissionsCommand"; import { DescribeRootFoldersCommandInput, DescribeRootFoldersCommandOutput, } from "./commands/DescribeRootFoldersCommand"; import { DescribeUsersCommandInput, DescribeUsersCommandOutput, } from "./commands/DescribeUsersCommand"; import { GetCurrentUserCommandInput, GetCurrentUserCommandOutput, } from "./commands/GetCurrentUserCommand"; import { GetDocumentCommandInput, GetDocumentCommandOutput } from "./commands/GetDocumentCommand"; import { GetDocumentPathCommandInput, GetDocumentPathCommandOutput, } from "./commands/GetDocumentPathCommand"; import { GetDocumentVersionCommandInput, GetDocumentVersionCommandOutput, } from "./commands/GetDocumentVersionCommand"; import { GetFolderCommandInput, GetFolderCommandOutput } from "./commands/GetFolderCommand"; import { GetFolderPathCommandInput, GetFolderPathCommandOutput, } from "./commands/GetFolderPathCommand"; import { GetResourcesCommandInput, GetResourcesCommandOutput, } from "./commands/GetResourcesCommand"; import { InitiateDocumentVersionUploadCommandInput, InitiateDocumentVersionUploadCommandOutput, } from "./commands/InitiateDocumentVersionUploadCommand"; import { RemoveAllResourcePermissionsCommandInput, RemoveAllResourcePermissionsCommandOutput, } from "./commands/RemoveAllResourcePermissionsCommand"; import { RemoveResourcePermissionCommandInput, RemoveResourcePermissionCommandOutput, } from "./commands/RemoveResourcePermissionCommand"; import { RestoreDocumentVersionsCommandInput, RestoreDocumentVersionsCommandOutput, } from "./commands/RestoreDocumentVersionsCommand"; import { SearchResourcesCommandInput, SearchResourcesCommandOutput, } from "./commands/SearchResourcesCommand"; import { UpdateDocumentCommandInput, UpdateDocumentCommandOutput, } from "./commands/UpdateDocumentCommand"; import { UpdateDocumentVersionCommandInput, UpdateDocumentVersionCommandOutput, } from "./commands/UpdateDocumentVersionCommand"; import { UpdateFolderCommandInput, UpdateFolderCommandOutput, } from "./commands/UpdateFolderCommand"; import { UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand"; import { WorkDocsClient } from "./WorkDocsClient"; export interface WorkDocs { abortDocumentVersionUpload( args: AbortDocumentVersionUploadCommandInput, options?: __HttpHandlerOptions, ): Promise; abortDocumentVersionUpload( args: AbortDocumentVersionUploadCommandInput, cb: (err: any, data?: AbortDocumentVersionUploadCommandOutput) => void, ): void; abortDocumentVersionUpload( args: AbortDocumentVersionUploadCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AbortDocumentVersionUploadCommandOutput) => void, ): void; activateUser( args: ActivateUserCommandInput, options?: __HttpHandlerOptions, ): Promise; activateUser( args: ActivateUserCommandInput, cb: (err: any, data?: ActivateUserCommandOutput) => void, ): void; activateUser( args: ActivateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ActivateUserCommandOutput) => void, ): void; addResourcePermissions( args: AddResourcePermissionsCommandInput, options?: __HttpHandlerOptions, ): Promise; addResourcePermissions( args: AddResourcePermissionsCommandInput, cb: (err: any, data?: AddResourcePermissionsCommandOutput) => void, ): void; addResourcePermissions( args: AddResourcePermissionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddResourcePermissionsCommandOutput) => void, ): void; createComment( args: CreateCommentCommandInput, options?: __HttpHandlerOptions, ): Promise; createComment( args: CreateCommentCommandInput, cb: (err: any, data?: CreateCommentCommandOutput) => void, ): void; createComment( args: CreateCommentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCommentCommandOutput) => void, ): void; createCustomMetadata( args: CreateCustomMetadataCommandInput, options?: __HttpHandlerOptions, ): Promise; createCustomMetadata( args: CreateCustomMetadataCommandInput, cb: (err: any, data?: CreateCustomMetadataCommandOutput) => void, ): void; createCustomMetadata( args: CreateCustomMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCustomMetadataCommandOutput) => void, ): void; createFolder( args: CreateFolderCommandInput, options?: __HttpHandlerOptions, ): Promise; createFolder( args: CreateFolderCommandInput, cb: (err: any, data?: CreateFolderCommandOutput) => void, ): void; createFolder( args: CreateFolderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFolderCommandOutput) => void, ): void; createLabels( args: CreateLabelsCommandInput, options?: __HttpHandlerOptions, ): Promise; createLabels( args: CreateLabelsCommandInput, cb: (err: any, data?: CreateLabelsCommandOutput) => void, ): void; createLabels( args: CreateLabelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLabelsCommandOutput) => void, ): void; createNotificationSubscription( args: CreateNotificationSubscriptionCommandInput, options?: __HttpHandlerOptions, ): Promise; createNotificationSubscription( args: CreateNotificationSubscriptionCommandInput, cb: (err: any, data?: CreateNotificationSubscriptionCommandOutput) => void, ): void; createNotificationSubscription( args: CreateNotificationSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNotificationSubscriptionCommandOutput) => void, ): void; createUser( args: CreateUserCommandInput, options?: __HttpHandlerOptions, ): Promise; createUser( args: CreateUserCommandInput, cb: (err: any, data?: CreateUserCommandOutput) => void, ): void; createUser( args: CreateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUserCommandOutput) => void, ): void; deactivateUser( args: DeactivateUserCommandInput, options?: __HttpHandlerOptions, ): Promise; deactivateUser( args: DeactivateUserCommandInput, cb: (err: any, data?: DeactivateUserCommandOutput) => void, ): void; deactivateUser( args: DeactivateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeactivateUserCommandOutput) => void, ): void; deleteComment( args: DeleteCommentCommandInput, options?: __HttpHandlerOptions, ): Promise; deleteComment( args: DeleteCommentCommandInput, cb: (err: any, data?: DeleteCommentCommandOutput) => void, ): void; deleteComment( args: DeleteCommentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCommentCommandOutput) => void, ): void; deleteCustomMetadata( args: DeleteCustomMetadataCommandInput, options?: __HttpHandlerOptions, ): Promise; deleteCustomMetadata( args: DeleteCustomMetadataCommandInput, cb: (err: any, data?: DeleteCustomMetadataCommandOutput) => void, ): void; deleteCustomMetadata( args: DeleteCustomMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCustomMetadataCommandOutput) => void, ): void; deleteDocument( args: DeleteDocumentCommandInput, options?: __HttpHandlerOptions, ): Promise; deleteDocument( args: DeleteDocumentCommandInput, cb: (err: any, data?: DeleteDocumentCommandOutput) => void, ): void; deleteDocument( args: DeleteDocumentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDocumentCommandOutput) => void, ): void; deleteDocumentVersion( args: DeleteDocumentVersionCommandInput, options?: __HttpHandlerOptions, ): Promise; deleteDocumentVersion( args: DeleteDocumentVersionCommandInput, cb: (err: any, data?: DeleteDocumentVersionCommandOutput) => void, ): void; deleteDocumentVersion( args: DeleteDocumentVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDocumentVersionCommandOutput) => void, ): void; deleteFolder( args: DeleteFolderCommandInput, options?: __HttpHandlerOptions, ): Promise; deleteFolder( args: DeleteFolderCommandInput, cb: (err: any, data?: DeleteFolderCommandOutput) => void, ): void; deleteFolder( args: DeleteFolderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFolderCommandOutput) => void, ): void; deleteFolderContents( args: DeleteFolderContentsCommandInput, options?: __HttpHandlerOptions, ): Promise; deleteFolderContents( args: DeleteFolderContentsCommandInput, cb: (err: any, data?: DeleteFolderContentsCommandOutput) => void, ): void; deleteFolderContents( args: DeleteFolderContentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFolderContentsCommandOutput) => void, ): void; deleteLabels( args: DeleteLabelsCommandInput, options?: __HttpHandlerOptions, ): Promise; deleteLabels( args: DeleteLabelsCommandInput, cb: (err: any, data?: DeleteLabelsCommandOutput) => void, ): void; deleteLabels( args: DeleteLabelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLabelsCommandOutput) => void, ): void; deleteNotificationSubscription( args: DeleteNotificationSubscriptionCommandInput, options?: __HttpHandlerOptions, ): Promise; deleteNotificationSubscription( args: DeleteNotificationSubscriptionCommandInput, cb: (err: any, data?: DeleteNotificationSubscriptionCommandOutput) => void, ): void; deleteNotificationSubscription( args: DeleteNotificationSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNotificationSubscriptionCommandOutput) => void, ): void; deleteUser( args: DeleteUserCommandInput, options?: __HttpHandlerOptions, ): Promise; deleteUser( args: DeleteUserCommandInput, cb: (err: any, data?: DeleteUserCommandOutput) => void, ): void; deleteUser( args: DeleteUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUserCommandOutput) => void, ): void; describeActivities(): Promise; describeActivities( args: DescribeActivitiesCommandInput, options?: __HttpHandlerOptions, ): Promise; describeActivities( args: DescribeActivitiesCommandInput, cb: (err: any, data?: DescribeActivitiesCommandOutput) => void, ): void; describeActivities( args: DescribeActivitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeActivitiesCommandOutput) => void, ): void; describeComments( args: DescribeCommentsCommandInput, options?: __HttpHandlerOptions, ): Promise; describeComments( args: DescribeCommentsCommandInput, cb: (err: any, data?: DescribeCommentsCommandOutput) => void, ): void; describeComments( args: DescribeCommentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCommentsCommandOutput) => void, ): void; describeDocumentVersions( args: DescribeDocumentVersionsCommandInput, options?: __HttpHandlerOptions, ): Promise; describeDocumentVersions( args: DescribeDocumentVersionsCommandInput, cb: (err: any, data?: DescribeDocumentVersionsCommandOutput) => void, ): void; describeDocumentVersions( args: DescribeDocumentVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDocumentVersionsCommandOutput) => void, ): void; describeFolderContents( args: DescribeFolderContentsCommandInput, options?: __HttpHandlerOptions, ): Promise; describeFolderContents( args: DescribeFolderContentsCommandInput, cb: (err: any, data?: DescribeFolderContentsCommandOutput) => void, ): void; describeFolderContents( args: DescribeFolderContentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFolderContentsCommandOutput) => void, ): void; describeGroups( args: DescribeGroupsCommandInput, options?: __HttpHandlerOptions, ): Promise; describeGroups( args: DescribeGroupsCommandInput, cb: (err: any, data?: DescribeGroupsCommandOutput) => void, ): void; describeGroups( args: DescribeGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeGroupsCommandOutput) => void, ): void; describeNotificationSubscriptions( args: DescribeNotificationSubscriptionsCommandInput, options?: __HttpHandlerOptions, ): Promise; describeNotificationSubscriptions( args: DescribeNotificationSubscriptionsCommandInput, cb: (err: any, data?: DescribeNotificationSubscriptionsCommandOutput) => void, ): void; describeNotificationSubscriptions( args: DescribeNotificationSubscriptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNotificationSubscriptionsCommandOutput) => void, ): void; describeResourcePermissions( args: DescribeResourcePermissionsCommandInput, options?: __HttpHandlerOptions, ): Promise; describeResourcePermissions( args: DescribeResourcePermissionsCommandInput, cb: (err: any, data?: DescribeResourcePermissionsCommandOutput) => void, ): void; describeResourcePermissions( args: DescribeResourcePermissionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeResourcePermissionsCommandOutput) => void, ): void; describeRootFolders( args: DescribeRootFoldersCommandInput, options?: __HttpHandlerOptions, ): Promise; describeRootFolders( args: DescribeRootFoldersCommandInput, cb: (err: any, data?: DescribeRootFoldersCommandOutput) => void, ): void; describeRootFolders( args: DescribeRootFoldersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRootFoldersCommandOutput) => void, ): void; describeUsers(): Promise; describeUsers( args: DescribeUsersCommandInput, options?: __HttpHandlerOptions, ): Promise; describeUsers( args: DescribeUsersCommandInput, cb: (err: any, data?: DescribeUsersCommandOutput) => void, ): void; describeUsers( args: DescribeUsersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeUsersCommandOutput) => void, ): void; getCurrentUser( args: GetCurrentUserCommandInput, options?: __HttpHandlerOptions, ): Promise; getCurrentUser( args: GetCurrentUserCommandInput, cb: (err: any, data?: GetCurrentUserCommandOutput) => void, ): void; getCurrentUser( args: GetCurrentUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCurrentUserCommandOutput) => void, ): void; getDocument( args: GetDocumentCommandInput, options?: __HttpHandlerOptions, ): Promise; getDocument( args: GetDocumentCommandInput, cb: (err: any, data?: GetDocumentCommandOutput) => void, ): void; getDocument( args: GetDocumentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDocumentCommandOutput) => void, ): void; getDocumentPath( args: GetDocumentPathCommandInput, options?: __HttpHandlerOptions, ): Promise; getDocumentPath( args: GetDocumentPathCommandInput, cb: (err: any, data?: GetDocumentPathCommandOutput) => void, ): void; getDocumentPath( args: GetDocumentPathCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDocumentPathCommandOutput) => void, ): void; getDocumentVersion( args: GetDocumentVersionCommandInput, options?: __HttpHandlerOptions, ): Promise; getDocumentVersion( args: GetDocumentVersionCommandInput, cb: (err: any, data?: GetDocumentVersionCommandOutput) => void, ): void; getDocumentVersion( args: GetDocumentVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDocumentVersionCommandOutput) => void, ): void; getFolder( args: GetFolderCommandInput, options?: __HttpHandlerOptions, ): Promise; getFolder( args: GetFolderCommandInput, cb: (err: any, data?: GetFolderCommandOutput) => void, ): void; getFolder( args: GetFolderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFolderCommandOutput) => void, ): void; getFolderPath( args: GetFolderPathCommandInput, options?: __HttpHandlerOptions, ): Promise; getFolderPath( args: GetFolderPathCommandInput, cb: (err: any, data?: GetFolderPathCommandOutput) => void, ): void; getFolderPath( args: GetFolderPathCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFolderPathCommandOutput) => void, ): void; getResources(): Promise; getResources( args: GetResourcesCommandInput, options?: __HttpHandlerOptions, ): Promise; getResources( args: GetResourcesCommandInput, cb: (err: any, data?: GetResourcesCommandOutput) => void, ): void; getResources( args: GetResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourcesCommandOutput) => void, ): void; initiateDocumentVersionUpload(): Promise; initiateDocumentVersionUpload( args: InitiateDocumentVersionUploadCommandInput, options?: __HttpHandlerOptions, ): Promise; initiateDocumentVersionUpload( args: InitiateDocumentVersionUploadCommandInput, cb: (err: any, data?: InitiateDocumentVersionUploadCommandOutput) => void, ): void; initiateDocumentVersionUpload( args: InitiateDocumentVersionUploadCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: InitiateDocumentVersionUploadCommandOutput) => void, ): void; removeAllResourcePermissions( args: RemoveAllResourcePermissionsCommandInput, options?: __HttpHandlerOptions, ): Promise; removeAllResourcePermissions( args: RemoveAllResourcePermissionsCommandInput, cb: (err: any, data?: RemoveAllResourcePermissionsCommandOutput) => void, ): void; removeAllResourcePermissions( args: RemoveAllResourcePermissionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveAllResourcePermissionsCommandOutput) => void, ): void; removeResourcePermission( args: RemoveResourcePermissionCommandInput, options?: __HttpHandlerOptions, ): Promise; removeResourcePermission( args: RemoveResourcePermissionCommandInput, cb: (err: any, data?: RemoveResourcePermissionCommandOutput) => void, ): void; removeResourcePermission( args: RemoveResourcePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveResourcePermissionCommandOutput) => void, ): void; restoreDocumentVersions( args: RestoreDocumentVersionsCommandInput, options?: __HttpHandlerOptions, ): Promise; restoreDocumentVersions( args: RestoreDocumentVersionsCommandInput, cb: (err: any, data?: RestoreDocumentVersionsCommandOutput) => void, ): void; restoreDocumentVersions( args: RestoreDocumentVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreDocumentVersionsCommandOutput) => void, ): void; searchResources(): Promise; searchResources( args: SearchResourcesCommandInput, options?: __HttpHandlerOptions, ): Promise; searchResources( args: SearchResourcesCommandInput, cb: (err: any, data?: SearchResourcesCommandOutput) => void, ): void; searchResources( args: SearchResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchResourcesCommandOutput) => void, ): void; updateDocument( args: UpdateDocumentCommandInput, options?: __HttpHandlerOptions, ): Promise; updateDocument( args: UpdateDocumentCommandInput, cb: (err: any, data?: UpdateDocumentCommandOutput) => void, ): void; updateDocument( args: UpdateDocumentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDocumentCommandOutput) => void, ): void; updateDocumentVersion( args: UpdateDocumentVersionCommandInput, options?: __HttpHandlerOptions, ): Promise; updateDocumentVersion( args: UpdateDocumentVersionCommandInput, cb: (err: any, data?: UpdateDocumentVersionCommandOutput) => void, ): void; updateDocumentVersion( args: UpdateDocumentVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDocumentVersionCommandOutput) => void, ): void; updateFolder( args: UpdateFolderCommandInput, options?: __HttpHandlerOptions, ): Promise; updateFolder( args: UpdateFolderCommandInput, cb: (err: any, data?: UpdateFolderCommandOutput) => void, ): void; updateFolder( args: UpdateFolderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFolderCommandOutput) => void, ): void; updateUser( args: UpdateUserCommandInput, options?: __HttpHandlerOptions, ): Promise; updateUser( args: UpdateUserCommandInput, cb: (err: any, data?: UpdateUserCommandOutput) => void, ): void; updateUser( args: UpdateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserCommandOutput) => void, ): void; paginateDescribeActivities( args?: DescribeActivitiesCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude >, ): Paginator; paginateDescribeComments( args: DescribeCommentsCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude >, ): Paginator; paginateDescribeDocumentVersions( args: DescribeDocumentVersionsCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude >, ): Paginator; paginateDescribeFolderContents( args: DescribeFolderContentsCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude >, ): Paginator; paginateDescribeGroups( args: DescribeGroupsCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude >, ): Paginator; paginateDescribeNotificationSubscriptions( args: DescribeNotificationSubscriptionsCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude >, ): Paginator; paginateDescribeResourcePermissions( args: DescribeResourcePermissionsCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude >, ): Paginator; paginateDescribeRootFolders( args: DescribeRootFoldersCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude >, ): Paginator; paginateDescribeUsers( args?: DescribeUsersCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude >, ): Paginator; paginateSearchResources( args?: SearchResourcesCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude >, ): Paginator; } export declare class WorkDocs extends WorkDocsClient implements WorkDocs {}