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