import { ViewStyle } from 'react-native';
import type { Props } from './MediaControls';
export declare type CustomIconStyle = {
    customIconStyle: ViewStyle;
};
declare type ControlsProps = Pick<Props, 'isLoading' | 'playerState' | 'onReplay'> & {
    onPause: () => void;
    onSkipFor: () => void;
    onSkipBack: () => void;
    onBrightness: (value: number) => void;
    onVolume: (value: number) => void;
    customIconStyle?: CustomIconStyle;
    volume: number;
    brightness: number;
    showSlider: boolean;
    showBrightness: boolean;
    showVolume: boolean;
    isChild: boolean;
};
declare const Controls: (props: ControlsProps) => JSX.Element;
export { Controls };
