/**
 * @param  {number} N
 * takes an input number and returns the number of circular primes from 0 to N
 */
export declare function circular(N: number): number;
