import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltAutocompleteOptionIconWireframeProps } from './VeltAutocompleteOptionIconWireframe/VeltAutocompleteOptionIconWireframe';
import { IVeltAutocompleteOptionNameWireframeProps } from './VeltAutocompleteOptionNameWireframe/VeltAutocompleteOptionNameWireframe';
import { IVeltAutocompleteOptionDescriptionWireframeProps } from './VeltAutocompleteOptionDescriptionWireframe/VeltAutocompleteOptionDescriptionWireframe';
import { IVeltAutocompleteOptionErrorIconWireframeProps } from './VeltAutocompleteOptionErrorIconWireframe/VeltAutocompleteOptionErrorIconWireframe';
export interface IVeltAutocompleteOptionWireframeProps extends IVeltWireframeCommonProps {
}
declare const VeltAutocompleteOptionWireframe: React.FC<IVeltAutocompleteOptionWireframeProps> & {
    Icon: React.FC<IVeltAutocompleteOptionIconWireframeProps>;
    Description: React.FC<IVeltAutocompleteOptionDescriptionWireframeProps>;
    ErrorIcon: React.FC<IVeltAutocompleteOptionErrorIconWireframeProps>;
    Name: React.FC<IVeltAutocompleteOptionNameWireframeProps>;
};
export default VeltAutocompleteOptionWireframe;
