import type { JBFileInputWebComponent, ValidationValue } from "jb-file-input"; import type { ValidationItem } from "jb-validation"; import { type RefObject } from "react"; export type JBFileInputAttributes = { acceptTypes?: string; placeholderTitle?: string; required?: boolean; validationList?: ValidationItem[]; }; export declare function useJBFileInputAttribute(element: RefObject, props: JBFileInputAttributes): void;