export interface UrlType { '@type': 'schema:URL'; '@value'?: string | null; } export interface UrlList { '@list': Array; } export declare function getURLInitialValue(value?: UrlType): UrlType; export declare function getURLListInitialValue(arrSize: number, value?: UrlList): UrlList;