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