/** * Used to retrieve current month usage for your account. * * @param type Used to specify which quota to return. */ export declare const usage: (type?: string) => Promise; export declare type UsageType = 'messages' | 'rules' | 'rule-records' | 'alerts' | 'alert-records' | string;