UNPKG

react-life-design

Version:
14 lines (13 loc) 480 B
/// <reference types="react" /> export declare const Label: import("styled-components").StyledComponent<"label", any, {}, never>; export declare const Input: import("styled-components").StyledComponent<"input", any, { type: "file"; }, "type">; interface IProps { onChange: (any?: any) => any; formats: string; maxSize: string | number; id: string; } declare const _default: ({ onChange, formats, maxSize, id }: IProps) => JSX.Element; export default _default;