import { SvelteComponent } from "svelte";
import type { Props } from "./Errors.proptypes.js";
import "./Errors.css";
declare const __propDef: {
    props: Props;
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {
            error: string | null;
            field: string;
        };
    };
    exports?: {} | undefined;
    bindings?: string | undefined;
};
export type ErrorsProps = typeof __propDef.props;
export type ErrorsEvents = typeof __propDef.events;
export type ErrorsSlots = typeof __propDef.slots;
export default class Errors extends SvelteComponent<ErrorsProps, ErrorsEvents, ErrorsSlots> {
}
export {};
