import { SvelteComponentTyped } from "svelte";
import type { missingValueType } from './types';
declare const __propDef: {
    props: {
        list?: missingValueType[];
        showTitle?: boolean;
        disabled?: boolean;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type MissingValuesProps = typeof __propDef.props;
export type MissingValuesEvents = typeof __propDef.events;
export type MissingValuesSlots = typeof __propDef.slots;
export default class MissingValues extends SvelteComponentTyped<MissingValuesProps, MissingValuesEvents, MissingValuesSlots> {
}
export {};
