import { CSSStyle, CodeSample } from './_shared'; import { ZMultiInput_Props } from './MultiInput.props'; export * from './MultiInput.props'; export type ZMultiInput_CodeProps = ZMultiInput_Props & { style?: CSSStyle; }; declare function Web(props: ZMultiInput_CodeProps): CodeSample; export declare const MultiInput: { name: string; category: "inputs"; slots: ("label" | "help-text")[]; web: typeof Web; };