/// type Props = { size?: number | string; color?: string; }; declare function RIDE({ size, color }: Props): JSX.Element; declare namespace RIDE { var DefaultColor: string; } export default RIDE;