import { CurrentDocument } from './xtabCurrentDocument'; /** * Checks if the position is valid inline suggestion position (middle of the line). * Returns `undefined` if it's position where ghost text shouldn't be displayed. * * @param textAfterCursor - The text from the cursor position to the end of line */ export declare function isInlineSuggestionFromTextAfterCursor(textAfterCursor: string): boolean | undefined; /** * Checks if the cursor position is valid inline suggestion position (middle of the line). * Returns `undefined` if it's a position where ghost text shouldn't be displayed. */ export declare function determineIsInlineSuggestionPosition(document: CurrentDocument): boolean | undefined; //# sourceMappingURL=inlineSuggestion.d.ts.map