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