export type TokenPoolConstructorUserInput = { token: string; allowlist: string[]; armProxy: string; }; export type TokenPoolConstructorContractInput = [token: string, allowlist: string[], armProxy: string]; export type TokenPoolUI_v1_2 = TokenPoolConstructorUserInput & { acceptLiquidity: boolean; }; export type TokenPoolCI_v1_2 = [token: string, allowlist: string[], armProxy: string, acceptLiquidity: boolean]; export type TokenPoolUI_v1_4 = TokenPoolUI_v1_2 & { router: string; }; export type TokenPoolCI_v1_4 = [ token: string, allowlist: string[], armProxy: string, acceptLiquidity: boolean, router: string ]; //# sourceMappingURL=types.d.ts.map