import React from 'react'; import { CSSProperties } from 'react'; export interface InputLabelProps { label: string; success?: boolean; successLabel?: string; active?: boolean; activeLabel?: string; error?: boolean; errorLabel?: string; align?: 'start' | 'end'; span?: number; style?: CSSProperties; } export declare const InputLabel: React.FC;