import { ViewProps } from "@vnxjs/components/types/View";
import { ReactNode } from "react";
import { FormLabelAlign } from "./form.shared";
export interface FormLabelProps extends ViewProps {
    align?: FormLabelAlign;
    colon?: boolean;
    children?: ReactNode;
}
declare function FormLabel(props: FormLabelProps): JSX.Element;
declare namespace FormLabel {
    var displayName: string;
}
export default FormLabel;
