import { type Account, type Address, type Chain, type Client, type Transport } from 'viem'; export type OperatorApprovalsOptions = { token?: Address; address: Address; operator?: Address; }; export type OperatorApprovalsResult = { isApproved: boolean; rateAllowance: bigint; lockupAllowance: bigint; rateUsed: bigint; lockupUsed: bigint; maxLockupPeriod: bigint; }; export declare function operatorApprovals(client: Client, options: OperatorApprovalsOptions): Promise; export type SetOperatorApprovalOptions = { token?: Address; operator?: Address; approve: boolean; }; export declare function setOperatorApproval(client: Client, options: SetOperatorApprovalOptions): Promise<`0x${string}`>; //# sourceMappingURL=operators.d.ts.map