UNPKG

@airplane/views

Version:

A React library for building Airplane views. Views components are optimized in style and functionality to produce internal apps that are easy to build and maintain.

7 lines (6 loc) 412 B
import { Ref } from "react"; import { FileInputProps } from "./FileInput.types"; export declare const FileInput: import("react").ForwardRefExoticComponent<FileInputProps & import("react").RefAttributes<HTMLDivElement>>; export declare const FileInputWithoutRef: ({ variant, ...props }: FileInputProps & { innerRef: Ref<HTMLDivElement> | Ref<HTMLButtonElement>; }) => import("react/jsx-runtime").JSX.Element;