import React from 'react'; import { DefaultProps, MantineNumberSize, Selectors } from '@asuikit/styles'; import useStyles from './InlineInput.styles'; export type InlineInputStylesNames = Selectors; export interface InlineInputProps extends DefaultProps, React.ComponentPropsWithoutRef<'div'> { variant?: string; __staticSelector: string; label: React.ReactNode; description: React.ReactNode; id: string; disabled: boolean; error: React.ReactNode; size: MantineNumberSize; labelPosition: 'left' | 'right'; bodyElement?: any; labelElement?: any; } export declare const InlineInput: React.ForwardRefExoticComponent>; //# sourceMappingURL=InlineInput.d.ts.map