import React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; export interface SerializableLinkCardGhostProps { style?: ViewStyle; height?: number | string; backgroundColor?: string; foregroundColor?: string; } export interface LinkCardGhostProps extends Omit { style?: StyleProp; } export declare const LinkCardGhost: React.FC;