import { ToAttrChain } from '../typescript'; import { BaseInput_Props } from './_BooleanInput.props'; export type ZSelectableCards_Option = { /** ... */ value: T; /** ... */ text?: string; /** ... */ disabled?: boolean; }; export type ZSelectableCards_Props = BaseInput_Props & Partial<{ /** ... */ readonly config: ToAttrChain<'left', 'top' | 'bottom'>; /** ... */ readonly options: readonly ZSelectableCards_Option[]; /** ... */ readonly model: T; /** ... */ readonly horizontal: boolean; /** ... */ readonly compact: boolean; }>; export declare const zSelectableCardsSlots: "options"[]; export type ZSelectableCards_Slots = (typeof zSelectableCardsSlots)[number]; export type ZSelectableCards_Events = Partial<{ /** ... */ readonly change: Required['model']>; /** */ readonly blur: void; /** */ readonly restarted: void; }>;