interface ListOptions { namespace: string; source: string; status?: string; stream?: string; type?: string; limit?: string; offset?: string; sort?: string; order?: string; json?: boolean; quiet?: boolean; } export declare function listMessages(opts: ListOptions): Promise; interface GetOptions { namespace: string; json?: boolean; } export declare function getMessage(id: string, opts: GetOptions): Promise; export {};