import { BaseComponent, CustomTokens } from './_shared'; export type ZSkeleton_Custom = 'width' | 'height' | 'radius' | 'time' | `bg-${'1' | '2'}`; export type ZSkeleton_Props = BaseComponent & Partial<{ readonly round: boolean; /** */ readonly custom: CustomTokens; }>; export declare const zSkeletonSlots: never[]; export type ZSkeleton_Slots = (typeof zSkeletonSlots)[number]; export type ZSkeleton_Events = {};