import React from 'react';
import { IVeltWireframeCommonProps } from '../../../constants';
import { IVeltCommentsSidebarV2SearchIcon } from './VeltCommentsSidebarV2SearchIcon/VeltCommentsSidebarV2SearchIcon';
import { IVeltCommentsSidebarV2SearchInput } from './VeltCommentsSidebarV2SearchInput/VeltCommentsSidebarV2SearchInput';
export interface IVeltCommentsSidebarV2SearchProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentsSidebarV2Search extends React.FC<IVeltCommentsSidebarV2SearchProps> {
    Icon: IVeltCommentsSidebarV2SearchIcon;
    Input: IVeltCommentsSidebarV2SearchInput;
}
declare const VeltCommentsSidebarV2Search: IVeltCommentsSidebarV2Search;
export default VeltCommentsSidebarV2Search;
