/** * (c) Meta Platforms, Inc. and affiliates. Confidential and proprietary. */ export type Args = { start?: string; file?: string; repo?: string; end?: string; classname?: string; symbol?: string; [other: string]: string | undefined; }; export declare function parseArgs(meta: string): Args;