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