/** * 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 { DefaultTheme, ThemeProps } from 'styled-components'; import { IListboxProps } from '../../types'; export interface IStyledListboxProps extends ThemeProps { isCompact?: boolean; maxHeight?: IListboxProps['maxHeight']; minHeight?: IListboxProps['minHeight']; } export declare const StyledListbox: import("styled-components").StyledComponent<"ul", DefaultTheme, { 'data-garden-id': string; 'data-garden-version': string; } & IStyledListboxProps, "data-garden-id" | "data-garden-version">;