import { ColorValue, ProcessedColorValue, ViewProps, ViewPropsIOS } from 'react-native';
declare type NativeAirplayButtonProps = ViewPropsIOS & ViewProps & {
    tintColor?: ProcessedColorValue | null;
    activeTintColor?: ProcessedColorValue | null;
    prioritizesVideoDevices?: boolean;
};
export declare type AirplayButtonProps = Omit<NativeAirplayButtonProps, 'tintColor' | 'activeTintColor'> & {
    tintColor?: number | ColorValue;
    activeTintColor?: number | ColorValue;
};
export declare const AirplayButton: ({ tintColor, activeTintColor, ...props }: AirplayButtonProps) => JSX.Element;
export {};
