import * as tailwind_variants from 'tailwind-variants'; import { VariantProps } from 'tailwind-variants'; /** * Keyboard Key wrapper **Tailwind Variants** component * * @example * * const { base, abbr, content } = kbd() * * * * * * * * * * * * * * * * * * * * ? * * A * */ declare const kbd: tailwind_variants.TVReturnType<{}, { base: string[]; abbr: string; content: string; }, undefined, {}, { base: string[]; abbr: string; content: string; }, tailwind_variants.TVReturnType<{}, { base: string[]; abbr: string; content: string; }, undefined, unknown, unknown, undefined>>; type KbdVariantProps = VariantProps; type KbdSlots = keyof ReturnType; export { type KbdSlots, type KbdVariantProps, kbd };