import { AbstractHolidayDefinitionFactory, Country } from "@nesto-software/moment-holiday-core";
/**
 * Creates holiday definitions for Sweden.
 */
export declare class SwedishHolidayDefinitionFactory extends AbstractHolidayDefinitionFactory {
    private static readonly COUNTRY_NAME;
    private static readonly COUNTRY_ABBREVIATION;
    getCountryName(): string;
    getCountryAbbreviation(): string;
    createCountry(): Country;
}
export declare type SwedishCountryName = "Sweden";
export declare type SwedishCountryAbbrevition = "SE";
export declare type SwedishStateAbbreviation = "";
