declare const useColoredProps: (props: any) => ({
    color: any;
    borderColor?: undefined;
    bgColor?: undefined;
    backgroundColor?: undefined;
    placeholderTextColor?: undefined;
} | {
    borderColor: any;
    color?: undefined;
    bgColor?: undefined;
    backgroundColor?: undefined;
    placeholderTextColor?: undefined;
} | {
    bgColor: any;
    color?: undefined;
    borderColor?: undefined;
    backgroundColor?: undefined;
    placeholderTextColor?: undefined;
} | {
    backgroundColor: any;
    color?: undefined;
    borderColor?: undefined;
    bgColor?: undefined;
    placeholderTextColor?: undefined;
} | {
    placeholderTextColor: any;
    color?: undefined;
    borderColor?: undefined;
    bgColor?: undefined;
    backgroundColor?: undefined;
} | {
    [x: string]: string | undefined;
})[];
export default useColoredProps;
