/************ Processor: ts ************/ import * as dependency_0 from 'react'; // FILE: button.d.tsx declare namespace ns_button { import SyntheticEvent = dependency_0.SyntheticEvent; import ReactNode = dependency_0.ReactNode; import ButtonHTMLAttributes = dependency_0.ButtonHTMLAttributes; type props = { className?: ButtonHTMLAttributes["className"]; data?: Array; label?: ReactNode; children?: ReactNode; navigate?: string; disabled?: ButtonHTMLAttributes["disabled"]; onClick?: (e: SyntheticEvent) => void; title?: string; type?: ButtonHTMLAttributes["type"]; icon?: string; htmlFor?: string; loading?: boolean; colorSpinner?: string; }; function BeyondButton(props: props): JSX.Element; } // FILE: checkbox.d.tsx declare namespace ns_checkbox { import InputHTMLAttributes = dependency_0.InputHTMLAttributes; import ChangeEvent = dependency_0.ChangeEvent; import ForwardRefExoticComponent = dependency_0.ForwardRefExoticComponent; import RefAttributes = dependency_0.RefAttributes; import SyntheticEvent = dependency_0.SyntheticEvent; type props = { value?: InputHTMLAttributes["value"]; checked?: InputHTMLAttributes["checked"]; name?: InputHTMLAttributes["name"]; required?: InputHTMLAttributes["required"]; disabled?: InputHTMLAttributes["disabled"]; className?: InputHTMLAttributes["className"]; onChange?: (e: ChangeEvent) => void; onClick?: (e: SyntheticEvent) => void; label?: string; }; const BeyondCheckbox: ForwardRefExoticComponent>; } // FILE: input.d.tsx declare namespace ns_input { import InputHTMLAttributes = dependency_0.InputHTMLAttributes; import ChangeEvent = dependency_0.ChangeEvent; import ReactNode = dependency_0.ReactNode; import HTMLAttributes = dependency_0.HTMLAttributes; type props = { ref?: any; value?: InputHTMLAttributes["value"]; errorMessage?: string; onChange?: (e: ChangeEvent) => void; max?: string; lengthMessage?: string; disabled?: InputHTMLAttributes["disabled"]; id?: string; hasError?: boolean; className?: HTMLAttributes["className"]; icon?: string; placeholder?: InputHTMLAttributes["placeholder"]; required?: InputHTMLAttributes["required"]; label?: any; children?: ReactNode; type?: InputHTMLAttributes["type"]; name?: InputHTMLAttributes["name"]; password?: boolean; pattern?: InputHTMLAttributes["pattern"]; list?: InputHTMLAttributes["list"]; min?: InputHTMLAttributes["min"]; step?: InputHTMLAttributes["step"]; loading?: boolean; colorSpinner?: string; }; function BeyondInput(props: props): JSX.Element; } // FILE: switch.d.tsx declare namespace ns_switch { import InputHTMLAttributes = dependency_0.InputHTMLAttributes; import ChangeEvent = dependency_0.ChangeEvent; import ForwardRefExoticComponent = dependency_0.ForwardRefExoticComponent; import RefAttributes = dependency_0.RefAttributes; import SyntheticEvent = dependency_0.SyntheticEvent; type props = { value?: InputHTMLAttributes["value"]; checked?: InputHTMLAttributes["checked"]; name?: InputHTMLAttributes["name"]; required?: InputHTMLAttributes["required"]; disabled?: InputHTMLAttributes["disabled"]; className?: InputHTMLAttributes["className"]; onChange?: (e: ChangeEvent) => void; onClick?: (e: SyntheticEvent) => void; }; const BeyondSwitch: ForwardRefExoticComponent>; } // FILE: textarea.d.tsx declare namespace ns_textarea { import TextareaHTMLAttributes = dependency_0.TextareaHTMLAttributes; import ChangeEvent = dependency_0.ChangeEvent; import ReactNode = dependency_0.ReactNode; import HTMLAttributes = dependency_0.HTMLAttributes; type props = { ref?: any; value?: TextareaHTMLAttributes["value"]; errorMessage?: string; onChange?: (e: ChangeEvent) => void; max?: string; lengthMessage?: string; disabled?: TextareaHTMLAttributes["disabled"]; id?: string; hasError?: boolean; className?: HTMLAttributes["className"]; placeholder?: TextareaHTMLAttributes["placeholder"]; required?: TextareaHTMLAttributes["required"]; label?: any; children?: ReactNode; name?: TextareaHTMLAttributes["name"]; }; function BeyondTextarea(props: props): JSX.Element; } export import BeyondButton = ns_button.BeyondButton; export import BeyondCheckbox = ns_checkbox.BeyondCheckbox; export import BeyondInput = ns_input.BeyondInput; export import BeyondSwitch = ns_switch.BeyondSwitch; export import BeyondTextarea = ns_textarea.BeyondTextarea; export declare const hmr: {on: (event: string, listener: any) => void, off: (event: string, listener: any) => void };