import { PropType } from "vue"; declare const PADDING: readonly ["top", "bottom", "vertical", "horizontal", "all", "none"]; export type SectionPadding = typeof PADDING[number]; /** * Section wrapper is used to group the related content together to form a section in slide-out. */ declare const _default: import("vue/types/v3-define-component").DefineComponent<{ /** * 'top' | 'bottom' | 'vertical' | 'horizontal' | 'all' | 'none' */ padding: { type: PropType<"top" | "bottom" | "horizontal" | "vertical" | "all" | "none">; default: string; validator(value: SectionPadding): boolean; }; /** * true | false */ disabled: { type: BooleanConstructor; default: boolean; }; }, import("vue").Data, import("vue").Data, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly; default: string; validator(value: SectionPadding): boolean; }; /** * true | false */ disabled: { type: BooleanConstructor; default: boolean; }; }>>, { padding: "top" | "bottom" | "horizontal" | "vertical" | "all" | "none"; disabled: boolean; }>; export default _default;