import { type TextInputProps as PrimerTextInputProps, type TextInputActionProps as PrimerTextInputActionProps } from '@primer/react'; import { type ForwardRefExoticComponent, type RefAttributes } from 'react'; import { type SxProp } from '../sx'; import { type ForwardRefComponent } from '../polymorphic'; export type TextInputProps = PrimerTextInputProps & SxProp & { as?: React.ElementType; }; export type TextInputActionProps = PrimerTextInputActionProps & SxProp; declare const TextInputAction: ForwardRefComponent<'button', TextInputActionProps>; type TextInputComposite = ForwardRefExoticComponent> & { Action: typeof TextInputAction; }; export declare const TextInput: TextInputComposite; export {}; //# sourceMappingURL=TextInput.d.ts.map