import { CSProps } from '@workday/canvas-kit-styling';
export interface FormFieldGroupInputProps extends CSProps {
}
/**
 * Adds the necessary props to an `Input` component for grouped inputs.
 */
export declare const useFormFieldGroupInput: import("@workday/canvas-kit-react/common").BehaviorHook<{
    state: {
        id: string;
        error: "error" | "caution" | undefined;
        isRequired: boolean;
        orientation: "vertical" | "horizontalEnd" | "horizontalStart";
    };
    events: {};
}, {
    readonly 'aria-invalid': true | undefined;
    readonly 'aria-describedby': string | undefined;
    readonly 'aria-required': true | undefined;
}>;
export declare const FormFieldGroupInput: import("@workday/canvas-kit-react/common").ElementComponentM<"input", FormFieldGroupInputProps, {
    state: {
        id: string;
        error: "error" | "caution" | undefined;
        isRequired: boolean;
        orientation: "vertical" | "horizontalEnd" | "horizontalStart";
    };
    events: {};
}>;
//# sourceMappingURL=FormFieldGroupInput.d.ts.map