import * as React from 'react'; interface IProps { /** @ignore */ className?: string; /** @ignore */ children?: React.ReactNode; /** Fired when selection is clicked. */ onClick: () => void; } declare const Selection: import("styled-components").StyledComponent<(props: IProps) => JSX.Element, import("../../styles/Theme").IThemeInterface, {}, never>; export { Selection };