import * as React from "react"; import { StyleProp, ViewStyle } from "react-native"; import Theme from "../styles/DefaultTheme"; declare type Props = { starSize?: number; maxStars?: number; rating?: number; theme: typeof Theme; style?: StyleProp; }; declare const _default: React.ComponentType & { theme?: import("@draftbit/react-theme-provider").$DeepPartial | undefined; }> & import("@draftbit/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics & React.FC, {}>; export default _default; export declare const SEED_DATA: { name: string; tag: string; description: string; category: string; props: { starSize: { label: string; description: string; formType: string; propType: string; group: string; defaultValue: null; editable: boolean; required: boolean; min: number; step: number; }; maxStars: { label: string; description: string; formType: string; propType: string; group: string; defaultValue: null; editable: boolean; required: boolean; min: number; step: number; }; rating: { label: string; description: string; formType: string; propType: string; group: string; defaultValue: null; editable: boolean; required: boolean; min: number; step: number; }; }; };