declare type PrizeType = {
    id: string | number;
    image: string;
    text?: string;
};
export default PrizeType;
