mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 23:03:36 +01:00
16 lines
359 B
TypeScript
16 lines
359 B
TypeScript
import { BsPrefixRefForwardingComponent } from './helpers';
|
|
|
|
export interface FormFileInputProps {
|
|
id?: string;
|
|
isValid?: boolean;
|
|
isInvalid?: boolean;
|
|
lang?: string;
|
|
}
|
|
|
|
declare interface FormFileInput
|
|
extends BsPrefixRefForwardingComponent<'input', FormFileInputProps> {}
|
|
|
|
declare const FormFileInput: FormFileInput;
|
|
|
|
export default FormFileInput;
|