import React from 'react';
import { ReactElement } from 'react';
import { ScoreDescriptor } from './Dial';
export type DialLayoutProps = {
    dial: ReactElement;
    label: ScoreDescriptor;
    toolTipText?: string;
};
declare const DialLayout: ({ dial, label, toolTipText, }: DialLayoutProps) => React.ReactNode;
export default DialLayout;
//# sourceMappingURL=DialLayout.d.ts.map