import { StyleProp, TextStyle, View, ViewProps } from 'react-native';
import { AsTextProps } from '../as-text';
export interface InputLabelAdditionalProps {
    asterisk?: string;
    required?: boolean;
    hideAsterisk?: boolean;
}
export interface InputLabelProps extends InputLabelAdditionalProps, ViewProps {
    innerProps?: AsTextProps<any>;
    styles?: {
        labelText?: StyleProp<TextStyle>;
        asterisk?: StyleProp<TextStyle>;
    };
}
export declare const InputLabel: import("react").ForwardRefExoticComponent<InputLabelProps & {
    children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<View>>;
