import type { ExtractPropTypes } from 'vue'; import type { useTheme } from '../../_mixins'; type themePropKeys = keyof typeof useTheme.props; type RemoveReadonly = { -readonly [key in keyof T]: T[key]; }; export type ExtractPublicPropTypes = Omit>>, Exclude | Extract>; export type ExtractInternalPropTypes = Partial>; export {};