import { type QuoteState } from "./quote.js";
/**
 * Represents a quote or a quote placeholder, with the current authorization status.
 * @see https://docs.joinmastodon.org/entities/ShallowQuote/
 */
export interface ShallowQuote {
    state: QuoteState;
    quotedStatusId?: string | null;
}
