import React from 'react';
import { ScreenConfig, Styles } from '../types';
export interface AppliedProps {
    config: ScreenConfig;
    title?: string;
    size?: number;
    strokeWidth?: number;
    style?: Styles;
}
declare const Applied: ({ config, title, size, strokeWidth, style }: AppliedProps) => React.JSX.Element;
export default Applied;
