import type { IRocketChatAssets } from '@rocket.chat/core-typings'; export type AssetsUnsetAssetProps = { assetName: keyof IRocketChatAssets; refreshAllClients?: boolean; }; export type AssetsSetAssetProps = { asset: string | ArrayBuffer; assetName: keyof IRocketChatAssets; refreshAllClients?: boolean; }; export type AssetsEndpoints = { '/v1/assets.setAsset': { POST: (params: AssetsSetAssetProps) => void; }; '/v1/assets.unsetAsset': { POST: (params: AssetsUnsetAssetProps) => void; }; }; export declare const isAssetsUnsetAssetProps: import("ajv").ValidateFunction; export declare const isAssetsSetAssetProps: import("ajv").ValidateFunction; //# sourceMappingURL=assets.d.ts.map