import type { RemoteXPCFacade } from './remote-xpc';
/**
 * Pasteboard service on real hardware.
 *
 * Requires **iOS/tvOS 17+** and the optional **`appium-ios-remotexpc`** package.
 */
export declare class PasteboardClient {
    private readonly udid;
    private readonly remoteXPCFacade;
    constructor(udid: string, remoteXPCFacade: RemoteXPCFacade);
    setPasteboard(content: string, contentType?: string): Promise<void>;
    getPasteboard(contentType?: string): Promise<string | undefined>;
    private withPasteboardService;
}
//# sourceMappingURL=pasteboard-client.d.ts.map