import { ToAttrChain } from '../typescript'; import { BaseInput_Props } from './_BooleanInput.props'; export type ZInput_Size = 'm' | 'l'; export type ZInput_Type = 'shaped' | 'line'; /** */ export type ZInput_Props = BaseInput_Props & Partial<{ /** ... */ readonly label: string; /** ... */ readonly readonly: boolean; /** ... */ readonly config: ToAttrChain; /** ... */ readonly autocomplete: AutoFill; }>; export declare const zInputSlots: ("label" | "help-text")[];