export declare const isValidClmm: (id: string) => boolean;
export declare const isValidAmm: (id: string) => boolean;
export declare function retryWithBackoff<T>(fn: () => Promise<T>, maxRetries?: number, initialBackoff?: number): Promise<T>;
