import * as React from "react"; import { StyleProp, ViewStyle } from "react-native"; declare type Props = { data?: any[]; children?: React.ReactNode; style?: StyleProp; dotColor?: string; }; declare function Carousel({ data, children, dotColor, style, ...rest }: Props): JSX.Element; declare const _default: React.ComponentType & { theme?: import("@draftbit/react-theme-provider").$DeepPartial | undefined; }> & import("@draftbit/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics & typeof Carousel, {}>; export default _default; export declare const SEED_DATA: { name: string; tag: string; category: string; description: string; layout: {}; props: { resizeMode: { group: string; label: string; description: string; editable: boolean; required: boolean; defaultValue: string; formType: string; propType: string; options: string[]; }; dotColor: { group: string; label: string; description: string; editable: boolean; required: boolean; defaultValue: null; formType: string; propType: string; }; }; }[];