import type { StyleProp, ViewStyle } from 'react-native'; import type { ButtonProps } from '../Button'; import { ToastColorInternal } from './types'; export declare function useButtonColor({ color, toastColor, }: { color: ButtonProps['color']; toastColor: ToastColorInternal; }): "danger" | "warning" | "success" | "info" | "action"; interface UseVerticalPlaceholderStylesParams { rootClassName?: string; style?: StyleProp; } export declare function useVerticalPlaceholderStyles({ rootClassName, style, }: UseVerticalPlaceholderStylesParams): { topStyle: ViewStyle; bottomStyle: ViewStyle; }; export {}; //# sourceMappingURL=hooks.d.ts.map