import { ExtractPropTypes } from "vue";
export declare const conditionTitleProps: {
    id: {
        type: StringConstructor;
    };
    required: {
        type: BooleanConstructor;
        default: boolean;
    };
    title: {
        type: StringConstructor;
        default: string;
    };
    valid: {
        type: BooleanConstructor;
        default: boolean;
    };
    inValidTip: {
        type: StringConstructor;
        default: string;
    };
    showSubTitle: {
        type: BooleanConstructor;
        default: boolean;
    };
    showCollapse: {
        type: BooleanConstructor;
        default: boolean;
    };
    subTitle: {
        type: StringConstructor;
        default: string;
    };
};
export type ConditionTitleProps = ExtractPropTypes<typeof conditionTitleProps>;
export declare const conditionPanelListProps: Record<string, any>;
export type ConditionPanelListProps = ExtractPropTypes<typeof conditionPanelListProps>;
