import { type CommandsRequestBuilder } from './commands/index.js';
import { type BackingStoreFactory, type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestAdapter } from '@microsoft/kiota-abstractions';
/**
 * The main entry point of the SDK, exposes the configuration and the fluent API.
 */
export interface CommandsServiceClient extends BaseRequestBuilder<CommandsServiceClient> {
    /**
     * Provides operations to manage the collection of command entities.
     */
    get commands(): CommandsRequestBuilder;
}
/**
 * Instantiates a new CommandsServiceClient and sets the default values.
 * @param backingStore The backing store to use for the models.
 * @param requestAdapter The request adapter to use to execute the requests.
 */
export declare function createCommandsServiceClient(requestAdapter: RequestAdapter, backingStore?: BackingStoreFactory | undefined): CommandsServiceClient;
/**
 * Metadata for all the navigation properties in the request builder.
 */
export declare const CommandsServiceClientNavigationMetadata: Record<Exclude<keyof CommandsServiceClient, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
 * Uri template for the request builder.
 */
export declare const CommandsServiceClientUriTemplate = "{+baseurl}";
//# sourceMappingURL=commandsServiceClient.d.ts.map