UNPKG

4.33 kBTypeScriptView Raw
1/// <reference types="react" />
2import Button, { ButtonProps } from './buttons/Button';
3import Chip, { ChipProps } from './buttons/Chip';
4import Input, { InputProps } from './input/Input';
5import Icon, { IconProps } from './icons/Icon';
6import ListItem from './list/ListItem';
7import { ListItemProps } from './list/ListItemBase';
8import { ListItemAccordionProps } from './list/ListItemAccordion';
9import { ListItemSwipeableProps } from './list/ListItemSwipeable';
10import SocialIcon, { SocialIconProps } from './social/SocialIcon';
11import Overlay, { OverlayProps } from './overlay/Overlay';
12import SearchBar, { SearchBarProps } from './searchbar/SearchBar';
13import { SearchBarAndroidProps } from './searchbar/SearchBar-android';
14import { SearchBarDefaultProps } from './searchbar/SearchBar-default';
15import { SearchBarIosProps } from './searchbar/SearchBar-ios';
16import Badge, { BadgeProps } from './badge/Badge';
17import withBadge from './badge/withBadge';
18import CheckBox, { CheckBoxProps } from './checkbox/CheckBox';
19import Divider, { DividerProps } from './divider/Divider';
20import Slider, { SliderProps } from './slider/Slider';
21import ButtonGroup, { ButtonGroupProps } from './buttons/ButtonGroup';
22import Image, { ImageProps } from './image/Image';
23import FAB, { FABProps } from './buttons/FAB';
24import SpeedDial, { SpeedDialActionProps, SpeedDialProps } from './buttons/SpeedDial';
25import Card, { CardProps } from './card/Card';
26import Dialog, { DialogProps } from './dialog/Dialog';
27import { DialogLoadingProps } from './dialog/DialogLoading';
28import { DialogTitleProps } from './dialog/DialogTitle';
29import Tile, { TileProps } from './tile/Tile';
30import Avatar, { AvatarProps } from './avatar/Avatar';
31import Accessory, { AccessoryProps } from './avatar/Accessory';
32import Header, { HeaderProps } from './header/Header';
33import PricingCard, { PricingCardProps } from './pricing/PricingCard';
34import Tooltip, { TooltipProps } from './tooltip/Tooltip';
35import BottomSheet, { BottomSheetProps } from './bottomSheet/BottomSheet';
36import LinearProgress, { LinearProgressProps } from './linearProgress';
37import Switch, { SwitchProps } from './switch/switch';
38import Tab, { TabItemProps, TabProps } from './tab/Tab';
39import TabView, { TabViewProps } from './tab/TabView';
40import { TapRatingProps, SwipeRatingProps } from 'react-native-ratings';
41import Text, { TextProps } from './text/Text';
42import { Colors, colors, ThemeProvider, ThemeConsumer, ThemeContext, withTheme, makeStyles, useTheme, UpdateTheme, ReplaceTheme, FullTheme, Theme, ThemeProps } from './config';
43import getIconType, { registerCustomIconType } from './helpers/getIconType';
44import normalize from './helpers/normalizeText';
45declare const AirbnbRating: import("react").FunctionComponent<Pick<TapRatingProps, "size" | "count" | "reviews" | "showRating" | "reviewColor" | "reviewSize" | "defaultRating" | "starContainerStyle" | "onFinishRating" | "isDisabled" | "selectedColor" | "starImage">> | import("react").ForwardRefExoticComponent<TapRatingProps>;
46declare const Rating: import("react").ForwardRefExoticComponent<any> | import("react").FunctionComponent<Pick<any, string | number | symbol>>;
47export { Badge, BottomSheet, Button, ButtonGroup, Card, Chip, Input, ListItem, LinearProgress, PricingCard, Tooltip, Switch, SocialIcon, Text, Divider, Dialog, CheckBox, SearchBar, Icon, colors, getIconType, registerCustomIconType, normalize, Tile, Slider, Avatar, Accessory, Rating, AirbnbRating, Header, Overlay, ThemeProvider, ThemeConsumer, ThemeContext, withBadge, withTheme, useTheme, makeStyles, Image, FAB, SpeedDial, Tab, TabView, };
48export type { AvatarProps, ButtonProps, Colors, ChipProps, InputProps, IconProps, ListItemProps, SocialIconProps, OverlayProps, SearchBarProps, SearchBarAndroidProps, SearchBarDefaultProps, SearchBarIosProps, BadgeProps, CheckBoxProps, DividerProps, SliderProps, ButtonGroupProps, ImageProps, CardProps, DialogProps, DialogLoadingProps, DialogTitleProps, TileProps, AccessoryProps, HeaderProps, PricingCardProps, TooltipProps, BottomSheetProps, TapRatingProps, SwipeRatingProps, SwitchProps, TextProps, UpdateTheme, ReplaceTheme, FullTheme, Theme, LinearProgressProps, FABProps, SpeedDialActionProps, SpeedDialProps, ThemeProps, TabItemProps, TabProps, ListItemAccordionProps, ListItemSwipeableProps, TabViewProps, };