export declare function getInputOffsets(inputWrapperOrder: ('label' | 'input' | 'description' | 'error')[], { hasDescription, hasError }: {
    hasDescription: boolean;
    hasError: boolean;
}): {
    offsetBottom: boolean;
    offsetTop: boolean;
};
