182c59c84cc3171f587e431cfc96833fa0622e9fb6adc99a444fc436f8bae5fddca0a4a11b1774175d7648e5dbe7ddde6741df0f6bad7059c4c9774f8f7d3b 953 B

123456789101112131415161718
  1. import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
  2. export declare const buttonGroupProps: {
  3. /**
  4. * @description control the size of buttons in this button-group
  5. */
  6. readonly size: {
  7. readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
  8. readonly required: false;
  9. readonly validator: ((val: unknown) => boolean) | undefined;
  10. __epPropKey: true;
  11. };
  12. /**
  13. * @description control the type of buttons in this button-group
  14. */
  15. readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "text" | "default" | "primary" | "success" | "warning" | "info" | "danger", unknown, "", boolean>;
  16. };
  17. export type ButtonGroupProps = ExtractPropTypes<typeof buttonGroupProps>;
  18. export type ButtonGroupPropsPublic = __ExtractPublicPropTypes<typeof buttonGroupProps>;