import { InjectionToken, type Provider } from '@angular/core';
export interface TuiLayoutIcons {
    readonly filter: string;
    readonly grid: string;
}
export declare const TUI_LAYOUT_ICONS: InjectionToken<TuiLayoutIcons>;
export declare function tuiLayoutIconsProvider(icons: Partial<TuiLayoutIcons>): Provider;
/**
 * @deprecated use {@link TUI_LAYOUT_ICONS} instead
 */
export declare const TUI_COMMON_ICONS: InjectionToken<TuiLayoutIcons>;
/**
 * @deprecated use {@link tuiLayoutIconsProvider} instead
 */
export declare const tuiCommonIconsProvider: typeof tuiLayoutIconsProvider;
/**
 * @deprecated use {@link TuiLayoutIcons} instead
 */
export type TuiCommonIcons = TuiLayoutIcons;
