import React from 'react'; import type { SharedAccessibilityProps, SharedProps } from '@coinbase/cds-common/types'; import { type PressableDefaultElement, type PressableProps } from '../system/Pressable'; export type LikeButtonBaseProps = Pick< SharedAccessibilityProps, 'accessibilityLabel' | 'accessibilityHint' > & SharedProps & { liked?: boolean; count?: number; /** Reduce the inner padding within the button itself. */ compact?: boolean; /** Ensure the button aligns flush on the left or right. * This prop will translate the entire button left/right, * so take care to ensure it is not overflowing awkwardly */ flush?: 'start' | 'end'; }; export type LikeButtonProps = LikeButtonBaseProps & PressableProps; export declare const LikeButton: React.NamedExoticComponent; //# sourceMappingURL=LikeButton.d.ts.map