declare type FormatOptions = 'long' | 'short' | 'narrow'; /** * Returns the days for the given locale and format. * Defaults to en-US/long */ declare const getDays: (locale?: string, format?: FormatOptions) => string[]; export default getDays;