import { BaseComponent, CustomTokens } from './_shared'; export type ZFigure_Custom = 'font' | 'color'; export type ZFigure_Props = BaseComponent & Partial<{ /** ... */ readonly caption: string; /** */ readonly custom: CustomTokens; }>; export declare const zFigureSlots: "caption"[]; export type ZFigure_Slots = (typeof zFigureSlots)[number]; export type ZFigure_Events = {};