/** * Copyright Zendesk, Inc. * * Use of this source code is governed under the Apache License, Version 2.0 * found at http://www.apache.org/licenses/LICENSE-2.0. */ import { ThemeProps, DefaultTheme } from 'styled-components'; import { OptionType } from '../../types'; export interface IStyledOptionProps extends ThemeProps { isActive?: boolean; isCompact?: boolean; $type?: OptionType | 'header' | 'group'; } export declare const getMinHeight: (props: IStyledOptionProps) => number; export declare const StyledOption: import("styled-components").StyledComponent<"li", DefaultTheme, { 'data-garden-id': string; 'data-garden-version': string; } & IStyledOptionProps, "data-garden-id" | "data-garden-version">;