import { type Ref } from 'vue'; type Refs = { [K in keyof T]: Ref; }; export declare function refs(...values: Type): Refs; export declare function provides(obj: Record): void; export type FormProvider = [data: T, send: () => any]; export declare function getRandomString(radix: number, length: number): string; export declare function capitalize(str: string): string; export {};