import { ICSSInJSStyle } from '@fluentui/styles';
import * as PopperJs from '@popperjs/core';
declare type GetContainerStylesOptions = {
    padding: string;
    placement: PopperJs.BasePlacement;
};
declare type GetPointerStylesOptions = {
    backgroundColor: string;
    borderColor: string;
    borderSize: string;
    gap: string;
    padding: string;
    height: string;
    width: string;
    placement: PopperJs.BasePlacement;
    rtl: boolean;
    svg?: string;
};
export declare const getContainerStyles: (options: GetContainerStylesOptions) => ICSSInJSStyle;
export declare const getPointerStyles: (options: GetPointerStylesOptions) => ICSSInJSStyle;
export {};
