import type { ExtractPropTypes, InjectionKey, StyleValue } from 'vue'; import type Scrollbar from './scrollbar.vue'; export declare const scrollbarProps: { readonly height: import("@element-plus-next/vue-utils").EpPropFinalized; readonly maxHeight: import("@element-plus-next/vue-utils").EpPropFinalized; readonly native: BooleanConstructor; readonly wrapStyle: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => StyleValue & {}) | (() => StyleValue) | ((new (...args: any[]) => StyleValue & {}) | (() => StyleValue))[], unknown, unknown, "", boolean>; readonly wrapClass: import("@element-plus-next/vue-utils").EpPropFinalized; readonly viewClass: import("@element-plus-next/vue-utils").EpPropFinalized; readonly viewStyle: import("@element-plus-next/vue-utils").EpPropFinalized; readonly noresize: BooleanConstructor; readonly tag: import("@element-plus-next/vue-utils").EpPropFinalized; readonly always: BooleanConstructor; readonly minSize: import("@element-plus-next/vue-utils").EpPropFinalized; }; 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; export interface ScrollbarContext { scrollbarElement: HTMLDivElement; wrapElement: HTMLDivElement; } export declare const scrollbarContextKey: InjectionKey;