import type { Props } from '@theme-init/CodeBlock'; export interface GitHubReference { url: string; fromLine: number; toLine: number; title: string; } export interface ReferenceCodeBlockProps extends Props { reference: string; } export declare type DispatchTypes = 'reset' | 'loading' | 'loaded' | 'error'; export interface DispatchMessage { type: DispatchTypes; value: string | Error; } //# sourceMappingURL=types.d.ts.map