import { ThemedStyledProps } from 'styled-components'; import { Mark, Size, TooltipPosition } from '../Button'; import { Theme } from '../../themes/default'; interface CommonStyleProps { size: Size | undefined; mark: Mark | false | undefined; } export declare const commonStyle: ({ theme, mark, size, }: ThemedStyledProps) => import("styled-components").FlattenSimpleInterpolation; interface TooltipStyleProps { tooltipTitle: string | undefined; tooltipPosition: TooltipPosition; size: Size | undefined; mark: Mark | false | undefined; } export declare const tooltipStyle: ({ theme, tooltipTitle, tooltipPosition, mark, size, }: ThemedStyledProps) => import("styled-components").FlattenSimpleInterpolation; export {};