import 'isomorphic-fetch';
export interface ClientProps {
    query: string;
    variables: GetProps | ListProps;
}
export interface ListProps {
    first?: number;
    orderBy?: string;
    orderDirection?: string;
    where?: object;
}
export interface GetProps {
    id: string;
}
export declare const ens: {
    client: (props: ClientProps) => Promise<any>;
    resolveName: (name: string) => Promise<any>;
    lookupAddress: (address: string) => Promise<any>;
};
//# sourceMappingURL=ens.d.ts.map