export declare const margins: {
    PAGE: number;
    HEADER: number;
    SPACER: number;
    SECTION: number;
};
export declare const fontSizes: {
    body: string;
    header: number;
};
export declare const colours: {
    white: string;
    black: string;
    grey: string;
    darkGrey: string;
    green: string;
    blue: string;
    yellow: string;
};
export declare const styles: {
    page: {
        fontFamily: string;
        fontSize: string;
        lineHeight: string;
        flexDirection: "column";
        color: string;
        backgroundColor: string;
        padding: string;
    };
    section: {
        marginHorizontal: number;
        fontSize: string;
        lineHeight: number;
        marginBottom: number;
    };
    sectionHeader: {
        fontWeight: "semibold";
        fontSize: string;
        marginBottom: number;
        lineHeight: number;
        borderBottom: string;
    };
    semibold: {
        fontWeight: "semibold";
    };
    experienceHeader: {
        display: "flex";
        flexDirection: "row";
        justifyContent: "space-between";
        marginBottom: number;
    };
    column: {
        display: "flex";
        flexDirection: "row";
    };
    list: {
        width: string;
    };
    experience: {
        marginBottom: number;
    };
};
