import { ApiConfig, ApiNamespace } from '../client';
import { Network } from '../trakt';
import { ApiResponse } from '../utils';
/**
 * Networks api namespace
 */
export declare class Networks implements ApiNamespace {
    config: ApiConfig;
    constructor(config: ApiConfig);
    /**
     * Get a list of all TV networks, including the name.
     * @returns
     */
    list(): Promise<ApiResponse<Network[]>>;
}
//# sourceMappingURL=index.d.ts.map