export interface AtRefBot { type: 'bot'; name: string; } export interface AtRefDocs { type: 'docs'; name: string; } export interface AtRefUrl { type: 'url'; url: string; } export interface AtRefReset { type: 'reset'; } export type AtRef = AtRefBot | AtRefDocs | AtRefUrl | AtRefReset; export interface ParsedAtRefs { refs: AtRef[]; cleanMessage: string; hasBot: boolean; hasReset: boolean; urls: string[]; docNames: string[]; botName?: string; } export declare function parseAtRefs(message: string): ParsedAtRefs; export declare function hasAtRefs(message: string): boolean; //# sourceMappingURL=at-ref-parser.d.ts.map