import { ExtractPropTypes } from 'vue'; import { useTheme } from '../../_mixins'; declare type themePropKeys = keyof typeof useTheme.props; export declare type ExtractPublicPropTypes = Omit>, themePropKeys | Extract>; export declare type ExtractInternalPropTypes = Partial>; export {};