/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface SkeletonVariant { } type SkeletonVariantMap = { [key in keyof SkeletonVariant]: Array } export type SkeletonVariantProps = { [key in keyof SkeletonVariant]?: ConditionalValue | undefined } export interface SkeletonRecipe { __type: SkeletonVariantProps (props?: SkeletonVariantProps): string raw: (props?: SkeletonVariantProps) => SkeletonVariantProps variantMap: SkeletonVariantMap variantKeys: Array splitVariantProps(props: Props): [SkeletonVariantProps, Pretty>] getVariantProps: (props?: SkeletonVariantProps) => SkeletonVariantProps } export declare const skeleton: SkeletonRecipe