import { type CSSObject } from '@emotion/react';
import { type Appearance, type Spacing } from '../types';
type GetCssArgs = {
    appearance: Appearance;
    spacing: Spacing;
    isSelected: boolean;
    shouldFitContainer: boolean;
    isOnlySingleIcon: boolean;
};
export declare function getCss({ appearance, spacing, isSelected, shouldFitContainer, isOnlySingleIcon, }: GetCssArgs): CSSObject;
export {};
