import { OptionRowProps } from ".";
interface StyledOptionRowProps extends Pick<OptionRowProps, "hidden"> {
    isHighlighted?: boolean;
    isDisabled?: boolean;
}
declare const StyledOptionRow: import("styled-components").StyledComponent<"tr", any, StyledOptionRowProps, never>;
export default StyledOptionRow;
