import type { ExtractPropTypes, PropType } from 'vue'; import type _Status from './status.vue'; export declare const sdStatusProps: { type: { type: PropType<"primary" | "success" | "warning" | "info" | "danger" | "error">; default: string; }; text: { type: StringConstructor; default: string; }; }; export declare type SdStatusProps = ExtractPropTypes; export declare type SdStatusInstance = InstanceType;