import React from "react"; export interface DrawerInputProps extends React.InputHTMLAttributes { label: string; onInput: React.FormEventHandler; } /** * Simple component for recreating the UI/UX of an Aha! record drawer input. */ export declare const DrawerInput: ({ label, onChange, ...props }: DrawerInputProps) => JSX.Element;