import { Content } from './Content';
import { Step } from './Step';
/** Section */
export interface Section {
    /** Content of the guide section */
    content: Content[];
    /** Steps to follow */
    steps: Step[];
    /** Title of the guide section */
    title: string;
}
//# sourceMappingURL=Section.d.ts.map