import { ApiResource, GenericResource, Signature } from "../types"; export declare function signResource({ token, branchName, resource, agentUrl, }: { token: string; branchName: string; resource: ApiResource | GenericResource; agentUrl: string; }): Promise; export declare function verifyResources({ agentUrl, token, branchName, resources, }: { resources: Array; token: string; branchName: string; agentUrl: string; }): Promise;