import { Ref } from 'vue'; declare const parse: (text: string) => number[]; export declare const useTimeParser: (props: { parse?: ((input: string, isValidRef?: Ref) => Date) | undefined; }) => { parse: (text: string) => Date | null; isValid: Ref; }; export {};