import { CheckboxModel } from '@prefecthq/prefect-design';
import { StateType } from '../models/StateType';
type __VLS_Props = {
    selectable?: boolean;
    selected?: CheckboxModel | null;
    value?: unknown;
    stateType?: StateType | null | undefined;
    tags?: string[] | null;
};
declare var __VLS_7: {}, __VLS_9: {}, __VLS_16: {}, __VLS_18: {}, __VLS_20: {}, __VLS_22: {};
type __VLS_Slots = {} & {
    name?: (props: typeof __VLS_7) => any;
} & {
    tags?: (props: typeof __VLS_9) => any;
} & {
    action?: (props: typeof __VLS_16) => any;
} & {
    meta?: (props: typeof __VLS_18) => any;
} & {
    relationships?: (props: typeof __VLS_20) => any;
} & {
    default?: (props: typeof __VLS_22) => any;
};
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
    "update:selected": (value: CheckboxModel) => any;
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
    "onUpdate:selected"?: ((value: CheckboxModel) => any) | undefined;
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
