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[]) => string | import("vue").CSSProperties | StyleValue[]) | (() => StyleValue) | ((new (...args: any[]) => string | import("vue").CSSProperties | 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 type ScrollbarProps = ExtractPropTypes; export declare const scrollbarEmits: { 'end-reached': (direction: ScrollbarDirection) => boolean; scroll: ({ scrollTop, scrollLeft, }: { scrollTop: number; scrollLeft: number; }) => boolean; }; export type ScrollbarEmits = typeof scrollbarEmits; export type ScrollbarDirection = 'top' | 'bottom' | 'left' | 'right'; export type ScrollbarInstance = InstanceType & unknown;