import { BaseComponent, CustomTokens } from './_shared'; export type ZSnapScroll_Custom = 'width' | 'gap' | 'padding'; export type ZSnapScroll_Props = BaseComponent & Partial<{ /** */ readonly config: 'vertical'; /** */ readonly custom: CustomTokens; }>; export declare const zSnapScrollSlots: never[]; export type ZSnapScroll_Slots = (typeof zSnapScrollSlots)[number]; export type ZSnapScroll_Events = {};