import type { ExtractPropTypes } from 'vue';
export declare const basicArrowProps: {
    /**
     * Arrow expand state
     */
    expand: {
        type: BooleanConstructor;
    };
    /**
     * Arrow up by default
     */
    up: {
        type: BooleanConstructor;
    };
    /**
     * Arrow down by default
     */
    down: {
        type: BooleanConstructor;
    };
    /**
     * Cancel padding/margin for inline
     */
    inset: {
        type: BooleanConstructor;
    };
    iconStyle: {
        type: StringConstructor;
    };
};
export declare type BasicArrowProps = ExtractPropTypes<typeof basicArrowProps>;
