import { Dropbox } from 'dropbox';
export interface ClientOptions {
    useTeamSpace?: boolean;
    forceTeamSpace?: boolean;
}
export declare function getDropboxClient(options?: ClientOptions): Promise<Dropbox>;
export declare function getDropboxClientForPath(path: string): Promise<Dropbox>;
export declare function formatDropboxPath(path: string): string;
