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