import React from 'react'; import { Block } from './Block'; import { Textarea } from './Textarea'; import { Select } from './Select'; import { Input } from './Input'; import { Button } from './Button'; export * from './Input'; export * from './Textarea'; export * from './Select'; export * from './Block'; export * from './Button'; export * from './Container'; export * from './Render'; export * from './store'; export interface LoginRef { } export interface LoginProps extends React.HTMLAttributes { } type LoginComponent = React.FC> & { Block: typeof Block; Button: typeof Button; Input: typeof Input; Textarea: typeof Textarea; Select: typeof Select; }; declare const Login: LoginComponent; export default Login;