/// <reference types="react" />
import { ViewProps } from 'react-native';
export interface ShowProps extends ViewProps {
    iconColor?: string;
    lunar?: string;
}
declare const Show: (props: ShowProps) => JSX.Element;
export default Show;
