import { type SimpleCellProps } from '../SimpleCell/SimpleCell'; import '../SimpleCell/SimpleCell.module.css'; export declare const appearanceClassNames: { accent: string; neutral: string; negative: string; }; export interface CellButtonProps extends SimpleCellProps { /** * > Режим `centered` переопределяет токен для темы `"accent"`. */ appearance?: 'accent' | 'neutral' | 'negative'; /** * Возможность центрирования содержимого компонента. */ centered?: boolean; } /** * @see https://vkui.io/components/cell-button */ export declare const CellButton: ({ centered, appearance, className, ...restProps }: CellButtonProps) => React.ReactNode; //# sourceMappingURL=CellButton.d.ts.map