/**
 * Cisco Meraki base URL, FQDN or IP. If not set, it uses the MERAKI_BASE_URL environment variable. Default is
 * (https://api.meraki.com/)
 */
export declare const merakiBaseUrl: string | undefined;
/**
 * Cisco Meraki merakiDashboardApiKey to authenticate. If not set, it uses the MERAKI_DASHBOARD_API_KEY environment
 * variable.
 */
export declare const merakiDashboardApiKey: string | undefined;
/**
 * Flag for Cisco Meraki to enable debugging. If not set, it uses the MERAKI_DEBUG environment variable defaults to
 * `false`.
 */
export declare const merakiDebug: string | undefined;
/**
 * Flag requests per second allowed for client. Default is (10)
 */
export declare const merakiRequestsPerSecond: number | undefined;
