import React from 'react'; import { FlowindColor, FlowindSize } from '../../../styles'; export interface StarSymbolProps { size: FlowindSize; color: FlowindColor; type: 'empty' | 'full'; } export declare function StarSymbol({ size, type, color }: StarSymbolProps): React.JSX.Element; export declare namespace StarSymbol { var displayName: string; }