interface GetFlagStringValueProps {
    args: string[];
    flag: string;
}
export declare const getFlagStringValue: ({ args, flag }: GetFlagStringValueProps) => string | null;
interface GetFlagsStringValueProps {
    args: string[];
    flags: string[];
}
export declare const getFlagsStringValue: ({ args, flags }: GetFlagsStringValueProps) => string | null;
export {};
