import { ThemeName } from "../constants/Colors"; import React from "react"; import { ViewProps, ViewStyle } from "react-native"; export type Props = ViewProps & { themeScheme?: "light" | "dark"; children?: string | React.ReactNode; variant?: "default" | "secondary" | ThemeName; width?: ViewStyle['width']; height?: ViewStyle['height']; borderRadius?: ViewStyle["borderRadius"]; animationDirection?: "leftToRight" | "rightToLeft" | "topToBottom" | "bottomToTop"; animationType?: "shiver" | "pulse"; center?: boolean; backgroundColor?: ViewStyle["backgroundColor"]; highlightColor?: ViewStyle["backgroundColor"]; square?: boolean; }; declare const Skeleton: ({ width, height, borderRadius, themeScheme, animationType, animationDirection, variant, square, ...otherProps }: Props) => React.JSX.Element; export default Skeleton; export declare const SkeletonWithoutAnimation: ({ width, height, borderRadius, themeScheme, variant, ...otherProps }: { themeScheme?: "light" | "dark"; children?: string | React.ReactNode; variant?: "default" | "secondary" | ThemeName; width?: ViewStyle["width"]; height?: ViewStyle["height"]; borderRadius?: ViewStyle["borderRadius"]; }) => React.JSX.Element; //# sourceMappingURL=Skeleton.d.ts.map