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