import React from 'react'; declare const MOON_PHASE_ICONS: { first_quarter: React.SFC>; third_quarter: React.SFC>; new_moon: React.SFC>; full_moon: React.SFC>; waning_crescent: React.SFC>; waxing_crescent: React.SFC>; waxing_gibbous: React.SFC>; waning_gibbous: React.SFC>; }; export interface IMoonPhaseIconProps extends React.SVGProps { moonPhase: keyof typeof MOON_PHASE_ICONS; } export declare const MoonPhaseIcon: ({ moonPhase, ...rest }: IMoonPhaseIconProps) => JSX.Element; export {};