import { Theme } from '@leafygreen-ui/lib'; import { CopyButtonAppearance, ScrollState } from './Code.types'; export declare const getWrapperStyles: ({ theme, className, }: { theme: Theme; className?: string; }) => string; export declare const getCodeStyles: ({ scrollState, theme, showPanel, showExpandButton, isLoading, }: { scrollState: ScrollState; theme: Theme; showPanel: boolean; showExpandButton: boolean; isLoading: boolean; }) => string; export declare const getCodeWrapperStyles: ({ theme, showPanel, expanded, codeHeight, collapsedCodeHeight, isMultiline, showExpandButton, className, }: { theme: Theme; showPanel: boolean; expanded: boolean; codeHeight: number; collapsedCodeHeight: number; isMultiline: boolean; showExpandButton: boolean; className?: string; }) => string; export declare const getExpandedButtonStyles: ({ theme }: { theme: Theme; }) => string; export declare const getCopyButtonWithoutPanelStyles: ({ copyButtonAppearance, }: { copyButtonAppearance: CopyButtonAppearance; }) => string; export declare const contentWrapperStyles: string; export declare const codeWithoutPanelStyles: string; export declare const codeWithPanelStyles: string; export declare const expandableContentWithoutPanelStyles: string; export declare const expandableContentWithPanelStyles: string; export declare const codeWrapperStyle: string; export declare const codeWrapperWithoutPanelStyles: string; export declare const codeWrapperWithPanelStyles: string; export declare const codeWrapperSingleLineStyles: string; export declare const codeWrapperHoverStyles: string; export declare function getExpandableCodeWrapperStyle(expanded: boolean, codeHeight: number, collapsedCodeHeight: number): string; export declare function getCodeWrapperVariantStyle(theme: Theme): string; export declare const expandButtonStyle: string; export declare function getExpandButtonUtilsVariantStyle(theme: Theme): string; export declare const baseScrollShadowStyles: string; export declare function getScrollShadow(scrollState: ScrollState, theme: Theme): string; export declare const getLoadingStyles: (theme: Theme) => string; //# sourceMappingURL=Code.styles.d.ts.map