import { Vue } from 'vue-property-decorator';
export default class Box extends Vue {
    private readonly border;
    private readonly borderRadius;
    private readonly width;
    private readonly height;
    private readonly padding;
    private readonly backgroundColor;
    private readonly opacity;
    private readonly boxShadow;
    get styles(): {
        border: string;
        'border-radius': string;
        width: string;
        height: string;
        padding: string;
        'background-color': string;
        opacity: string;
        'box-shadow': string;
        'box-sizing': string;
    };
}
