5 lines
295 B
TypeScript
5 lines
295 B
TypeScript
import { ReactElement, PropsWithChildren } from 'react';
|
|
import { SkeletonStyleProps } from './SkeletonStyleProps.js';
|
|
export type SkeletonThemeProps = PropsWithChildren<SkeletonStyleProps>;
|
|
export declare function SkeletonTheme({ children, ...styleOptions }: SkeletonThemeProps): ReactElement;
|