import { BaseComponent, CustomTokens } from './_shared'; export type ZScrollIndicator_Custom = 'color' | 'bg' | 'height'; export type ZScrollIndicator_Props = BaseComponent & Partial<{ /** */ readonly custom: CustomTokens; }>; export declare const zScrollIndicatorSlots: never[]; export type ZScrollIndicator_Slots = (typeof zScrollIndicatorSlots)[number]; export type ZScrollIndicator_Events = {};