/**
 * @notice Output of the check pool exists query
 * @dev Contains the pool address and existence status
 */
export interface ICheckPoolExistsOutput {
    exists: boolean;
    poolAddress: string;
}
