import { Call } from "starknet"; export declare const OperationType: { readonly Audit: "audit"; readonly Fund: "fund"; readonly Ragequit: "ragequit"; readonly Withdraw: "withdraw"; readonly Rollover: "rollover"; readonly Transfer: "transfer"; }; export type OperationType = typeof OperationType[keyof typeof OperationType]; export interface IOperation { type: OperationType; toCalldata(): Call; }