export interface CallLog { } export interface CallLogOptions { /** * limit in retrieved call log * @default 10 */ limit?: number; /** * offset in call log * @default 0 */ offset?: number; } /** * List call log history * * **Requires permission:** `android.permission.READ_CALL_LOG` */ export declare function callLog(options?: CallLogOptions): Promise;