declare const getPercentageTextHtml: ({ progress, type }: {
progress: any;
type?: string;
}) => string;
declare const getInnerIndicatorHtml: ({ progress, type, percentageVisible, inline, slotted }: {
progress: any;
type: string;
percentageVisible: boolean | string;
inline: boolean | string;
slotted: boolean | string;
}) => string;
export { getPercentageTextHtml, getInnerIndicatorHtml };