import { SvelteComponentTyped } from "svelte"; import type { Rules } from './types'; declare const __propDef: { props: { rules: Rules; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type ValidatorProps = typeof __propDef.props; export declare type ValidatorEvents = typeof __propDef.events; export declare type ValidatorSlots = typeof __propDef.slots; export default class Validator extends SvelteComponentTyped { } export {};