@vonage/vivid-react
Version:
Vivid wrapped for easy React usage & IDE autocomplete support & typescript typings
25 lines (24 loc) • 822 B
TypeScript
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<HTMLDivElement> | ((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;