option-group.vue.d.ts 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. declare const _default: import("vue").DefineComponent<{
  2. label: StringConstructor;
  3. disabled: {
  4. type: BooleanConstructor;
  5. default: boolean;
  6. };
  7. }, {
  8. visible: import("vue").Ref<boolean>;
  9. ns: {
  10. namespace: import("vue").Ref<string>;
  11. b: (blockSuffix?: string) => string;
  12. e: (element?: string | undefined) => string;
  13. m: (modifier?: string | undefined) => string;
  14. be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
  15. em: (element?: string | undefined, modifier?: string | undefined) => string;
  16. bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
  17. bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
  18. is: {
  19. (name: string, state: boolean | undefined): string;
  20. (name: string): string;
  21. };
  22. cssVar: (object: Record<string, string>) => Record<string, string>;
  23. cssVarName: (name: string) => string;
  24. cssVarBlock: (object: Record<string, string>) => Record<string, string>;
  25. cssVarBlockName: (name: string) => string;
  26. };
  27. }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
  28. label: StringConstructor;
  29. disabled: {
  30. type: BooleanConstructor;
  31. default: boolean;
  32. };
  33. }>>, {
  34. disabled: boolean;
  35. }>;
  36. export default _default;