import { IDispatchRequest } from "../../../DispatchRequest"; import HelpEntry from "../../../../help/HelpEntry"; export declare const argKeys: readonly ["id", "resourceType"]; export declare type GetLogArgKeys = typeof argKeys[number]; export declare const getLogFlagKeys: readonly []; export declare type GetLogFlagKeys = typeof getLogFlagKeys[number]; export declare const isGetLogArgs: (someValue: any) => someValue is Record<"id" | "resourceType", string>; export declare const asGetLogArgs: (someValue: any) => Record<"id" | "resourceType", string>; export declare const isGetLogFlags: (someValue: any) => someValue is Record; export declare const asGetLogFlagKeys: (someValue: any) => Record; export declare type GetLogRequest = IDispatchRequest; export declare const isGetLogRequest: (someValue: any) => someValue is GetLogRequest; export declare const asGetLogRequest: (someValue: any) => GetLogRequest; export declare const getLogEntry: HelpEntry;