import { Exec } from "../../interface/loader";
interface MarkdownSectionLoaderOptions {
    /**
     * The resource key
     */
    key: string;
    /**
     * The filepath
     */
    filepath: string;
    /**
     * The file encoding
     *
     * @default 'utf8'
     */
    encoding: string;
    /**
     * The findind sections
     */
    sections: string;
}
export declare const exec: Exec<MarkdownSectionLoaderOptions>;
export {};
