interface Peekaboo {
    togglePayloadVisibility(hash: string, isVisible: boolean): Promise<string>;
}
declare class PeekabooContract implements Peekaboo {
    private readonly iface;
    constructor();
    togglePayloadVisibility(hash: string, isVisible: boolean): Promise<string>;
    toggleCodeVisibility(hash: string, isVisible: boolean): Promise<string>;
    toggleHashVisibility(hash: string, isVisible: boolean): Promise<string>;
}
export { PeekabooContract };
//# sourceMappingURL=peekaboo.d.ts.map