/**
 * Section 组件为开发者提供了一个具有标题的组件容器。
 *
 * @example
 * ```vue
 * <script setup lang="ts"></script>
 * <style>
 * .my-extend {
 *     background: #dbe9ff;
 * }
 * </style>
 *
 * <template>
 *     <f-section :main-title="'采购信息'" :expandStatus="true" :enable-accordion="'default'" extend-class="my-extend">
 *         <template #extend>
 *             <div class="ml-3">这里是扩展区域</div>
 *         </template>
 *         <div class="f-form-layout">
 *             <div class="col-12">1、北京地区项目的物资采购订购</div>
 *             <div class="col-12 f-state-visible">2、南京地区项目的物资采购订购</div>
 *             <div class="col-12">3、山东地区项目的物资采购订购</div>
 *         </div>
 *     </f-section>
 * </template>
 * ```
 *
 * @public
 */
declare const _default: import("vue").DefineComponent<{
    [x: string]: any;
}, () => any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
    [x: string]: any;
}> & Readonly<{}>, {
    [x: string]: any;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
export default _default;
