import './MixScrollBar.css'; export declare const mixScrollBarPropSize: readonly ["m", "xs", "s"]; export type MixScrollBarPropSize = (typeof mixScrollBarPropSize)[number]; export declare const mixScrollBarPropSizeDefault: MixScrollBarPropSize; export declare const mixScrollBarPropTrackSize: readonly ["auto", "native"]; export type MixScrollBarPropTrackSize = (typeof mixScrollBarPropTrackSize)[number]; export declare const mixScrollBarPropTrackSizeDefault: MixScrollBarPropTrackSize; type MixScrollBarProps = { size?: MixScrollBarPropSize; invisible?: boolean; trackSize?: MixScrollBarPropTrackSize; }; type CnMixScrollBar = (props?: MixScrollBarProps) => string; export declare const cnMixScrollBar: CnMixScrollBar; export {};