import type { ExtractPropTypes, StyleValue } from 'vue'; import type Scrollbar from './scrollbar.vue'; export declare const scrollbarProps: { readonly ariaLabel: StringConstructor; readonly ariaOrientation: { readonly type: import("vue").PropType; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly height: import("element-plus/es/utils").EpPropFinalized; readonly maxHeight: import("element-plus/es/utils").EpPropFinalized; readonly native: import("element-plus/es/utils").EpPropFinalized; readonly wrapStyle: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => StyleValue & {}) | (() => StyleValue) | ((new (...args: any[]) => StyleValue & {}) | (() => StyleValue))[], unknown, unknown, "", boolean>; readonly wrapClass: import("element-plus/es/utils").EpPropFinalized; readonly viewClass: import("element-plus/es/utils").EpPropFinalized; readonly viewStyle: import("element-plus/es/utils").EpPropFinalized; readonly noresize: BooleanConstructor; readonly tag: import("element-plus/es/utils").EpPropFinalized; readonly always: BooleanConstructor; readonly minSize: import("element-plus/es/utils").EpPropFinalized; readonly tabindex: import("element-plus/es/utils").EpPropFinalized; readonly id: StringConstructor; readonly role: StringConstructor; }; export declare type ScrollbarProps = ExtractPropTypes; export declare const scrollbarEmits: { scroll: ({ scrollTop, scrollLeft, }: { scrollTop: number; scrollLeft: number; }) => boolean; }; export declare type ScrollbarEmits = typeof scrollbarEmits; export declare type ScrollbarInstance = InstanceType;