export declare const MAINNET_REST = "https://api.pacifica.fi/api/v1"; export declare const TESTNET_REST = "https://test-api.pacifica.fi/api/v1"; export declare const MAINNET_WS = "wss://ws.pacifica.fi/ws"; export declare const TESTNET_WS = "wss://test-ws.pacifica.fi/ws"; export declare const MAINNET_PROGRAM_ID = "PCFA5iYgmqK6MqPhWNKg7Yv7auX7VZ4Cx7T1eJyrAMH"; export declare const MAINNET_CENTRAL_STATE = "9Gdmhq4Gv1LnNMp7aiS1HSVd7pNnXNMsbuXALCQRmGjY"; export declare const MAINNET_PACIFICA_VAULT = "72R843XwZxqWhsJceARQQTTbYtWy6Zw9et2YV4FpRHTa"; export declare const MAINNET_USDC_MINT = "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"; export declare const TESTNET_PROGRAM_ID = "peRPsYCcB1J9jvrs29jiGdjkytxs8uHLmSPLKKP9ptm"; export declare const TESTNET_CENTRAL_STATE = "2zPRq1Qvdq5A4Ld6WsH7usgCge4ApZRYfhhf5VAjfXxv"; export declare const TESTNET_PACIFICA_VAULT = "5SDFdHZGTZbyRYu54CgmRkCGnPHC5pYaN27p7XGLqnBs"; export declare const TESTNET_USDC_MINT = "USDPqRbLidFGufty2s3oizmDEKdqx7ePTqzDMbf5ZKM"; export declare const DEFAULT_EXPIRY_WINDOW = 5000; export declare const USDC_DECIMALS = 6; export declare const BUILDER_CODE = "PERPCLI"; export type Network = "mainnet" | "testnet"; export declare function getNetworkConfig(network?: Network): { restUrl: string; wsUrl: string; programId: string; centralState: string; pacificaVault: string; usdcMint: string; };