import * as tailwind_variants from 'tailwind-variants';
import { VariantProps } from 'tailwind-variants';
/**
* Skeleton component
*
* const styles = skeleton({...})
*
* @example
*
* // skeleton content
*
*/
declare const skeleton: tailwind_variants.TVReturnType<{
variant: {
wave: {
base: string[];
};
pulse: {
base: string;
};
};
disableAnimation: {
true: {
base: string;
content: string;
};
false: {
base: string[];
content: string[];
};
};
}, {
base: string[];
content: string[];
}, undefined, {
variant: {
wave: {
base: string[];
};
pulse: {
base: string;
};
};
disableAnimation: {
true: {
base: string;
content: string;
};
false: {
base: string[];
content: string[];
};
};
}, {
base: string[];
content: string[];
}, tailwind_variants.TVReturnType<{
variant: {
wave: {
base: string[];
};
pulse: {
base: string;
};
};
disableAnimation: {
true: {
base: string;
content: string;
};
false: {
base: string[];
content: string[];
};
};
}, {
base: string[];
content: string[];
}, undefined, unknown, unknown, undefined>>;
type SkeletonVariantProps = VariantProps;
type SkeletonSlots = keyof ReturnType;
export { type SkeletonSlots, type SkeletonVariantProps, skeleton };