import type { FormKitInputs } from '@formkit/inputs'; declare module '@formkit/inputs' { export interface FormKitInputProps> { lInput: { type: 'l-input'; name: string; label: string; number?: string; dense?: boolean; }, lCheckbox: { type: 'l-checkbox'; name: string; label: string; dense?: boolean; }, lDatePicker: { type: 'l-date-picker'; name: string; label: string; dense?: boolean; }, lForm: { type: 'l-form'; gutter?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl'; bordered?: boolean; noDirtyCheck?: boolean; }, lSelect: { type: 'l-select'; name: string; label: string; options: Array; dense?: boolean; optionsDense?: boolean; }, } }