import { Content } from './Content';
import { Section } from './Section';
/** InstructionGuide */
export interface InstructionGuide {
    /** Guide introduction content */
    content: Content[];
    /** Guide language */
    language: string;
    /** Sections of the guide */
    sections: Section[];
    /** Guide title */
    title: string;
}
//# sourceMappingURL=InstructionGuide.d.ts.map