import { IndentService } from './indentService'; export interface QuoteService extends IndentService { readonly isQuoted: boolean; quote(): void; unquote(): void; } export declare const NULL_QUOTE_SERVICE: QuoteService;