export declare const POSIX_INLINE_COMMAND_FLAGS: Set; export declare const POWERSHELL_INLINE_COMMAND_FLAGS: Set; export declare function advancePosixInlineOptionScan(token: string): number; export declare function resolveInlineCommandMatch(argv: string[], flags: ReadonlySet, options?: { allowCombinedC?: boolean; isOptionToken?: (token: string) => boolean; restValueFlags?: ReadonlySet; stopAtFirstNonOption?: boolean; valueOptions?: ReadonlySet; }): { command: string | null; valueTokenIndex: number | null; }; export declare function resolvePowerShellInlineCommandMatch(argv: string[]): { command: string | null; valueTokenIndex: number | null; }; export declare function isPowerShellInlineRestCommandFlag(token: string): boolean; export declare function isPowerShellInlineFileCommandFlag(token: string): boolean; export declare function hasPosixInteractiveStartupBeforeInlineCommand(argv: string[], flags: ReadonlySet): boolean; export declare function hasPosixLoginStartupBeforeInlineCommand(argv: string[], flags: ReadonlySet): boolean; export declare function hasFishInitCommandOption(argv: string[]): boolean; export declare function hasFishAttachedCommandOption(argv: string[]): boolean;