export declare function getOwnStringProperties({ keys, optionalKeys, object, }: { keys: K[]; optionalKeys?: O[]; object: unknown; }): { [key in K]: string; } & { [key in O]?: string; };