import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        displayName?: string;
        description?: string;
        last?: boolean;
        index?: number;
        disabled?: boolean;
    };
    events: {
        change: Event;
        remove: CustomEvent<any>;
        add: CustomEvent<any>;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type MissingValueProps = typeof __propDef.props;
export type MissingValueEvents = typeof __propDef.events;
export type MissingValueSlots = typeof __propDef.slots;
export default class MissingValue extends SvelteComponentTyped<MissingValueProps, MissingValueEvents, MissingValueSlots> {
}
export {};
