import React, { ReactNode } from 'react'; import '@vonage/vwc-file-picker'; /** * @param {string} label * @param {string} helper * @param {string} validationMessage * @param {string} notAFileError * @param {string} tooManyFilesError * @param {boolean} noCounter */ declare const VwcFilePicker: (props: { children?: ReactNode; slot?: string | undefined; id?: string | undefined; style?: React.CSSProperties | undefined; ref?: React.RefObject | ((instance: HTMLDivElement | null) => void) | null | undefined; label?: string | undefined; helper?: string | undefined; validationMessage?: string | undefined; notAFileError?: string | undefined; tooManyFilesError?: string | undefined; noCounter?: boolean | undefined; }) => JSX.Element; export default VwcFilePicker;